Re: [hibernate-dev] Getting automatically removed from the list for "excessive bounces"?

2018-10-26 Thread Sanne Grinovero
Thanks for confirming that Alessio; indeed I have your address on this list too. I'm sure they'll figure it out, will just need some time :) Sanne On Wed, 24 Oct 2018 at 14:26, Alessio Stalla wrote: > > Hi, > I've got the excessive bounces message several times, too, and I'm using > Gmail. > >

[hibernate-dev] [ORM] RowSelection#definesLimit() looking weird

2018-10-26 Thread Guillaume Smet
Hi, RowSelection#definesLimit() [1] is defined as: public boolean definesLimits() { return maxRows != null || (firstRow != null && firstRow <= 0); } The firstRow <= 0 condition looks exactly like the opposite condition I would have used intuitively. Tests pass with either conditi