You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by mc...@apache.org on 2006/11/15 00:27:18 UTC

svn commit: r475055 - in /db/jdo/trunk/tck20/src: orm/applicationidentity/org/apache/jdo/tck/pc/instancecallbacks/ orm/datastoreidentity/org/apache/jdo/tck/pc/instancecallbacks/ sql/derby/applicationidentity/ sql/derby/datastoreidentity/

Author: mcaisse
Date: Tue Nov 14 15:27:16 2006
New Revision: 475055

URL: http://svn.apache.org/viewvc?view=rev&rev=475055
Log:
JDO-443

Modified:
    db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/instancecallbacks/package-standard.orm
    db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/instancecallbacks/package-standard.orm
    db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema.sql
    db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema.sql

Modified: db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/instancecallbacks/package-standard.orm
URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/instancecallbacks/package-standard.orm?view=diff&rev=475055&r1=475054&r2=475055
==============================================================================
--- db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/instancecallbacks/package-standard.orm (original)
+++ db/jdo/trunk/tck20/src/orm/applicationidentity/org/apache/jdo/tck/pc/instancecallbacks/package-standard.orm Tue Nov 14 15:27:16 2006
@@ -29,8 +29,11 @@
             <field name="nextObj">
                 <column name="NEXTOBJ"/>
             </field>
+            <!-- There is no parent field in the class,
+            only a Collection children. The PARENT column contains the
+            single-valued parent of each child instance. -->
             <field name="children">
-                <element column="CHILD"/>
+                <element column="PARENT"/>
             </field>
             <field name="intValue">
                 <column name="INTVAL"/>

Modified: db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/instancecallbacks/package-standard.orm
URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/instancecallbacks/package-standard.orm?view=diff&rev=475055&r1=475054&r2=475055
==============================================================================
--- db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/instancecallbacks/package-standard.orm (original)
+++ db/jdo/trunk/tck20/src/orm/datastoreidentity/org/apache/jdo/tck/pc/instancecallbacks/package-standard.orm Tue Nov 14 15:27:16 2006
@@ -31,8 +31,11 @@
             <field name="nextObj">
                 <column name="NEXTOBJ"/>
             </field>
+            <!-- There is no parent field in the class,
+            only a Collection children. The PARENT column contains the
+            single-valued parent of each child instance. -->
             <field name="children">
-                <element column="CHILD"/>
+                <element column="PARENT"/>
             </field>
             <field name="intValue">
                 <column name="INTVAL"/>

Modified: db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema.sql
URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema.sql?view=diff&rev=475055&r1=475054&r2=475055
==============================================================================
--- db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema.sql (original)
+++ db/jdo/trunk/tck20/src/sql/derby/applicationidentity/schema.sql Tue Nov 14 15:27:16 2006
@@ -9750,7 +9750,7 @@
     NAME VARCHAR(64),
     TIMEDATE TIMESTAMP,
     NEXTOBJ INTEGER,
-    CHILD INTEGER,
+    PARENT INTEGER,
     INTVAL INTEGER,
     DOUBLEVAL DOUBLE,
     CHILD2DEL INTEGER,

Modified: db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema.sql
URL: http://svn.apache.org/viewvc/db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema.sql?view=diff&rev=475055&r1=475054&r2=475055
==============================================================================
--- db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema.sql (original)
+++ db/jdo/trunk/tck20/src/sql/derby/datastoreidentity/schema.sql Tue Nov 14 15:27:16 2006
@@ -9762,7 +9762,7 @@
     NAME VARCHAR(64),
     TIMEDATE TIMESTAMP,
     NEXTOBJ INTEGER,
-    CHILD INTEGER,
+    PARENT INTEGER,
     INTVAL INTEGER,
     DOUBLEVAL DOUBLE,
     CHILD2DEL INTEGER,