|
This works with Hibernate 4.3.10.
Running on LINUX
Dependencies:
Postgresql version:
Files: Java model: https://gist.github.com/mkurz/4f07657fe39bbf75ec13 config: https://gist.github.com/mkurz/063c6a780519060eddb5
Reproduce: Database is empty (no tables). Running with hibernate.hbm2ddl.auto=update gives me the exception:
However the table test (lower case) is created in the database.
Re-running (without deleting the table) now gives me:
It seems this is an issue case-sensitive table/entity names. From my PostgreSQL logs I can see hibernate tries to create:
but the lower case table "test" exists already...
|