AFAIK, joined inheritance and one-to-one are not implemented.
- Original Message -
> From: "Hardy Ferentschik"
> To: "Steve Ebersole"
> Cc: "Gail Badner" , "Hibernate hibernate-dev"
>
> Sent: Thursday, August 9, 2012 12:04:37 PM
&
On 9 Jan 2012, at 8:32 PM, Steve Ebersole wrote:
> OK, I added adding FK between joined inheritance tables but
> org.hibernate.test.annotations.genericsinheritance.GenericsInheritanceTest
> still fails. AFAICT the problem there is that joined inheritance is
> considered the default if no inhe
OK, I added adding FK between joined inheritance tables but
org.hibernate.test.annotations.genericsinheritance.GenericsInheritanceTest
still fails. AFAICT the problem there is that joined inheritance is
considered the default if no inheritance type is specified (at least
based on the old DDL o
I hooked in using the new schema management tool code to handle schema
create/drop processing. These particular FKs are still not being
created. So I looked at the tests a little closer. The issue there is
that code building the bindings are not always creating Database
objects. Specifically
Perhaps we should actually hook in the new schema management code
before we start worrying about missing DDL bits? ;)
As it is right now, building the SessionFactory through the Metamodel
is still just using SchemaExport to the hacked-together
Database#generateSchemaCreationScript and
Database