[hibernate-dev] CI Jenkins upgraded to version 2.38

2016-12-27 Thread Davide D'Alto
Hi, I hope you all had great holidays. I've upgraded our Jenkin on CI to version 2.38. As far as i can tell everything seems all right, but if you experience some unusual problems, please, let me know. Cheers, Davide ___ hibernate-dev mailing list hib

[hibernate-dev] Preventing duplicate ForeignKey generation

2016-12-27 Thread Milo van der Zee
Hello all, During development of applications I'm used to set the schema creation to 'update' (hbm2ddl.auto = update). This makes life a bit easier. Issue with the newer version of Hibernate is that the name of the generated keys changed and so all keys are regenerated. For the large databases

Re: [hibernate-dev] ScrollableResults and 6.0

2016-12-27 Thread Steve Ebersole
FWIW my inclination is to just change the existing signatures. 6.0 is a major release with major changes already wrt querying. On Tue, Dec 27, 2016 at 3:01 PM Steve Ebersole wrote: > For 6.0 I'd like to also make ScrollableResults parameterized wrt the "row > type". E.g. > > ScrollableResults

[hibernate-dev] ScrollableResults and 6.0

2016-12-27 Thread Steve Ebersole
For 6.0 I'd like to also make ScrollableResults parameterized wrt the "row type". E.g. ScrollableResults sr = session.createQuery( ..., Person.class ).scroll(); However that changes the signature of its methods returning a "row" (currently always defined as Object[]). How would everyone prefer