Hi guys,
I have problem with duplicated sets for one-to-many like:
Code:
<set name="referencePhysicalGeneEncodesReferenceGeneProducts" table="ReferencePhysicalGeneEncodesReferenceGeneProduct" inverse="true" lazy="true" fetch="select">
<key>
<column name="referenceGeneID" not-null="true" />
</key>
<one-to-many class="org.phibase.database.schema.ReferencePhysicalGeneEncodesReferenceGeneProduct" />
</set>
<set name="referencePhysicalGeneEncodesReferenceGeneProducts_1" table="ReferencePhysicalGeneEncodesReferenceGeneProduct" inverse="true" lazy="true" fetch="select">
<key>
<column name="referenceGeneID" not-null="true" />
</key>
<one-to-many class="org.phibase.database.schema.ReferencePhysicalGeneEncodesReferenceGeneProduct" />
</set>
It's the same for classes. I tried different options including EJB3 annotations only (without configuration files). Yesterday I view my older version and it was found as well. It looks it doesn't depend the hibernate tools version. DDL for me looks normal. Database is normal as well (on mysql InnoDB).
thanks a lot for help,