@OrderColumn works but <order-column> does not (if used inside an <element-collection>)
Description
We use the following entity-mapping
with this implementing class:
EX_Person.java
Our problem is that the order column "hobbies_ORDER" of table "EX_Person_hobbies" is not created on startup. We use hibernate.hbm2ddl.auto=create to create all tables at startup.
As soon as we uncomment the annotation @OrderColumn all is working fine, the table "EX_Person_hobbies" gets the column "hobbies_ORDER" to store the index of the hobbies in the list.
Activity
Brett MeyerJuly 8, 2014 at 3:10 PM
Bulk rejecting stale issues. If this is still a legitimate issue on ORM 4, feel free to comment and attach a test case. I'll address responses case-by-case. Thanks!
If this is still a legitimate bug in ORM 4, please provide either a test case that reproduces it or enough detail (entities, mappings, snippets, etc.) to show that it still fails on 4. If nothing is received within 3 months or so, we'll be automatically closing them.
We use the following entity-mapping
with this implementing class:
EX_Person.java
Our problem is that the order column "hobbies_ORDER" of table "EX_Person_hobbies" is not created on startup.
We use hibernate.hbm2ddl.auto=create to create all tables at startup.
As soon as we uncomment the annotation @OrderColumn all is working fine,
the table "EX_Person_hobbies" gets the column "hobbies_ORDER" to store the index of the hobbies in the list.