Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Taal2013-04-01 12:21:42 +0000
committerMartin Taal2013-04-01 12:21:42 +0000
commita511b901ec692737795071396413e38cfc74cd63 (patch)
treeb203715c613545eb207877150d912e960ff863eb /tests/org.eclipse.emf.teneo.hibernate.test
parent689def9c07862da888c885d7bca4d3b0dd742f75 (diff)
downloadorg.eclipse.emf.teneo-a511b901ec692737795071396413e38cfc74cd63.tar.gz
org.eclipse.emf.teneo-a511b901ec692737795071396413e38cfc74cd63.tar.xz
org.eclipse.emf.teneo-a511b901ec692737795071396413e38cfc74cd63.zip
Fixes issue [404109]
Diffstat (limited to 'tests/org.eclipse.emf.teneo.hibernate.test')
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/VariousAction_hsqldb_e_o_hibernate.hbm.xml18
-rw-r--r--tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/VariousAction_hsqldb_h_o_hibernate.hbm.xml18
2 files changed, 36 insertions, 0 deletions
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/VariousAction_hsqldb_e_o_hibernate.hbm.xml b/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/VariousAction_hsqldb_e_o_hibernate.hbm.xml
index 92f76709b..09d36890f 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/VariousAction_hsqldb_e_o_hibernate.hbm.xml
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/VariousAction_hsqldb_e_o_hibernate.hbm.xml
@@ -22,6 +22,15 @@
<property name="totalPeople" lazy="false" not-null="false" type="int">
<formula>(select count(*) from parent)</formula>
</property>
+ <property name="name1" lazy="false" insert="true" update="true" not-null="false" unique="false" type="java.lang.String">
+ <column not-null="false" unique="false" name="`NAME1`"/>
+ </property>
+ <property name="name2" lazy="false" insert="true" update="true" not-null="false" unique="false" type="java.lang.String">
+ <column not-null="false" unique="false" name="`NAME2`"/>
+ </property>
+ <property name="completeName" lazy="false" not-null="false" type="java.lang.String">
+ <formula>(name1 + ' ' + name2)</formula>
+ </property>
</class>
<joined-subclass name="org.eclipse.emf.teneo.samples.emf.annotations.various.impl.ChildImpl" entity-name="Child" abstract="false" lazy="false" extends="Parent" table="`CHILD`">
<meta attribute="eclassName" inherit="false">Child</meta>
@@ -126,6 +135,15 @@
<property name="totalPeople" lazy="false" not-null="false" type="int">
<formula>(select count(*) from parent)</formula>
</property>
+ <property name="name1" lazy="false" insert="true" update="true" not-null="false" unique="false" type="java.lang.String">
+ <column not-null="false" unique="false" name="`NAME1`"/>
+ </property>
+ <property name="name2" lazy="false" insert="true" update="true" not-null="false" unique="false" type="java.lang.String">
+ <column not-null="false" unique="false" name="`NAME2`"/>
+ </property>
+ <property name="completeName" lazy="false" not-null="false" type="java.lang.String">
+ <formula>(name1 + ' ' + name2)</formula>
+ </property>
</class>
<joined-subclass name="org.eclipse.emf.teneo.hibernate.auditing.model.teneoauditing.impl.TeneoAuditEntryImpl" entity-name="ChildAuditing" abstract="false" lazy="false" extends="ParentAuditing" table="`CHILDAUDITING`">
<meta attribute="eclassName" inherit="false">ChildAuditing</meta>
diff --git a/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/VariousAction_hsqldb_h_o_hibernate.hbm.xml b/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/VariousAction_hsqldb_h_o_hibernate.hbm.xml
index 1eef1106d..8ed5f8947 100644
--- a/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/VariousAction_hsqldb_h_o_hibernate.hbm.xml
+++ b/tests/org.eclipse.emf.teneo.hibernate.test/hbm/org.eclipse.emf.teneo.test.emf.annotations/VariousAction_hsqldb_h_o_hibernate.hbm.xml
@@ -25,6 +25,15 @@
<property name="totalPeople" lazy="false" not-null="false" type="int">
<formula>(select count(*) from parent)</formula>
</property>
+ <property name="name1" lazy="false" insert="true" update="true" not-null="false" unique="false" type="java.lang.String">
+ <column not-null="false" unique="false" name="`NAME1`"/>
+ </property>
+ <property name="name2" lazy="false" insert="true" update="true" not-null="false" unique="false" type="java.lang.String">
+ <column not-null="false" unique="false" name="`NAME2`"/>
+ </property>
+ <property name="completeName" lazy="false" not-null="false" type="java.lang.String">
+ <formula>(name1 + ' ' + name2)</formula>
+ </property>
</class>
<subclass name="org.eclipse.emf.teneo.samples.emf.annotations.various.impl.ChildImpl" entity-name="Child" abstract="false" lazy="false" extends="Parent" discriminator-value="Child">
<meta attribute="eclassName" inherit="false">Child</meta>
@@ -132,6 +141,15 @@
<property name="totalPeople" lazy="false" not-null="false" type="int">
<formula>(select count(*) from parent)</formula>
</property>
+ <property name="name1" lazy="false" insert="true" update="true" not-null="false" unique="false" type="java.lang.String">
+ <column not-null="false" unique="false" name="`NAME1`"/>
+ </property>
+ <property name="name2" lazy="false" insert="true" update="true" not-null="false" unique="false" type="java.lang.String">
+ <column not-null="false" unique="false" name="`NAME2`"/>
+ </property>
+ <property name="completeName" lazy="false" not-null="false" type="java.lang.String">
+ <formula>(name1 + ' ' + name2)</formula>
+ </property>
</class>
<subclass name="org.eclipse.emf.teneo.hibernate.auditing.model.teneoauditing.impl.TeneoAuditEntryImpl" entity-name="ChildAuditing" abstract="false" lazy="false" extends="ParentAuditing" discriminator-value="ChildAuditing">
<meta attribute="eclassName" inherit="false">ChildAuditing</meta>

Back to the top