Issues
3 of 3
@PrimaryKeyJoinColumn and @ForeignKey(name = "FOREIGN_FOOBAR") don't work for InheritanceType.JOINED
Rejected
Description
Environment
dialect: Oracle10g
Attachments
2
Details
Assignee
UnassignedUnassignedReporter
Marcin CinikMarcin CinikBug Testcase Reminder (view)
Bug reports should generally be accompanied by a test case!
Bug Testcase Reminder (edit)
Bug reports should generally be accompanied by a test case!
Participants
Marcin CinikSanne GrinoveroAffects versions
Priority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
Marcin Cinik
Marcin CinikBug Testcase Reminder (view)
Bug reports should generally be accompanied by a test case!
Bug Testcase Reminder (edit)
Bug reports should generally be accompanied by a test case!
Participants
Marcin Cinik
Sanne Grinovero
Affects versions
Priority
Created May 27, 2010 at 11:16 AM
Updated August 15, 2023 at 1:53 PM
Resolved August 15, 2023 at 1:53 PM
Activity
Show:
Sanne GrinoveroAugust 15, 2023 at 1:53 PM
This was reported on the wrong project, and is now most likely out of date.
I've got an example where I have two classes: Customer, ValuedCustomer, where ValuedCustomer inherits from Customer. As InheritanceType.JOINED is used here, hibernate will generate a primary key in ValuedCustomer as well as all integrity constraints for that (I use Oracle10g dialect). I would like to give a name to that foreign key in ValuedCustomer (which is also a primary key there), but it's not possible.
In ValuedCustomer I use @PrimaryKeyJoinColumn annotation and @org.hibernate.annotations.Table with foreignKey property set in it. I would like that hibernate hbm2ddl generate foreign key constraint name as indicated in @ForeignKey annotation but it doesn't. It generates random constraint name instead.
I'm attaching example java project and generated schema file.