Brett Meyer commented on an issue
Hibernate ORM / Bug HHH-7248
Column names specified by @JoinColumn(name="testColumnId") lowercased
Even though i use ejb3namingstrategy, at runtime, column names specified by @javax.persistence.JoinColumn(name="testColumnId")
 are lowercased as "testcolumnid".
In hibernate 3.6.4 it runs successfully generating sql code as:

select top 25 testem0_.testColumnId as testZ9_62_, testem0_.testColumn2Id as testT14_62_ from Testems testem0_

whereas 3.6.7 gen...