This is an automated email from the ASF dual-hosted git repository.

ntimofeev pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cayenne.git


The following commit(s) were added to refs/heads/master by this push:
     new aeb6f0592 Make FK column mandatory for db2 testing
     new c0e810e16 Merge pull request #575 from m-dzianishchyts/db2-542
aeb6f0592 is described below

commit aeb6f05922aad1e1ab828a7469202a8ab8d42ddf
Author: Mikhail Dzianishchyts <[email protected]>
AuthorDate: Fri Mar 3 14:21:21 2023 +0300

    Make FK column mandatory for db2 testing
---
 cayenne-server/src/test/resources/relationships-flattened.map.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cayenne-server/src/test/resources/relationships-flattened.map.xml 
b/cayenne-server/src/test/resources/relationships-flattened.map.xml
index a9163c2b9..e1f3938cf 100644
--- a/cayenne-server/src/test/resources/relationships-flattened.map.xml
+++ b/cayenne-server/src/test/resources/relationships-flattened.map.xml
@@ -19,11 +19,11 @@
                <db-attribute name="ID" type="INTEGER" isPrimaryKey="true" 
isMandatory="true"/>
        </db-entity>
        <db-entity name="ENTITY2">
-               <db-attribute name="ENTITY1_ID" type="INTEGER"/>
+               <db-attribute name="ENTITY1_ID" type="INTEGER" 
isMandatory="true"/>
                <db-attribute name="ID" type="INTEGER" isPrimaryKey="true" 
isMandatory="true"/>
        </db-entity>
        <db-entity name="ENTITY3">
-               <db-attribute name="ENTITY2_ID" type="INTEGER"/>
+               <db-attribute name="ENTITY2_ID" type="INTEGER" 
isMandatory="true"/>
                <db-attribute name="ID" type="INTEGER" isPrimaryKey="true" 
isMandatory="true"/>
        </db-entity>
        <db-entity name="FLATTENED_CIRCULAR">

Reply via email to