[hibernate-dev] JDK 11 Early Access build 8 available

2018-04-12 Thread Rory O'Donnell
Hi Sanne, **JDK 11 EA build 8, *under both the GPL and Oracle EA licenses, is now available at **http://jdk.java.net/11**. ** * * Newly approved Schedule, status & features o http://openjdk.java.net/projects/jdk/11/ * Release Notes: o http://jdk.java.net/11/release-notes *

[hibernate-dev] HHH-8944 - ColumnTransformer handling is too aggressive in qualifying "column names"

2018-04-12 Thread Steve Ebersole
Anyone know of places where we document ColumnTransformer read-fragment handling as qualifying columns other than the column the transformer is attached to? E.g., consider: @Column( name="dob" ) @ColumnTransformer( read="SYSDATE - dob / 365", ... ) public int getAge() { ... } Currently, Hibernat

Re: [hibernate-dev] HHH-8944 - ColumnTransformer handling is too aggressive in qualifying "column names"

2018-04-12 Thread Steve Ebersole
https://github.com/hibernate/hibernate-orm/pull/2237 On Thu, Apr 12, 2018 at 7:45 AM Steve Ebersole wrote: > Anyone know of places where we document ColumnTransformer read-fragment > handling as qualifying columns other than the column the transformer is > attached to? E.g., consider: > > @Colu