diff options
author | niamhcore <niamh.core@est.tech> | 2021-01-19 12:45:44 +0000 |
---|---|---|
committer | Niamh Core <niamh.core@est.tech> | 2021-01-22 13:42:26 +0000 |
commit | 5b719d1cdc23da0c95310933fee09753401075f9 (patch) | |
tree | 7ae7993b6fe206a52479992bc26a5fc4e8e43d4e /cps-ri/src/test/resources | |
parent | 4ee05a9592b9b97efdad56f7e83cac16cd6d1311 (diff) |
Add another Child to a Fragment that has already at least one Child
Issue-ID: CPS-164
Signed-off-by: niamhcore <niamh.core@est.tech>
Change-Id: Ib6a4f8ce4fc9247726e016ecaa0b1e45ff11bdbb
Diffstat (limited to 'cps-ri/src/test/resources')
-rw-r--r-- | cps-ri/src/test/resources/data/fragment.sql | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/cps-ri/src/test/resources/data/fragment.sql b/cps-ri/src/test/resources/data/fragment.sql index c50f595306..05f5bfe455 100644 --- a/cps-ri/src/test/resources/data/fragment.sql +++ b/cps-ri/src/test/resources/data/fragment.sql @@ -8,6 +8,9 @@ INSERT INTO ANCHOR (ID, NAME, DATASPACE_ID, SCHEMA_SET_ID) VALUES (3001, 'ANCHOR-001', 1001, 2001); INSERT INTO FRAGMENT (ID, XPATH, ANCHOR_ID, PARENT_ID, DATASPACE_ID) VALUES - (3001, '/parent', 3001, null, 1001), - (3002, '/parent/child', 3001, 3001, 1001), - (3003, '/parent/child/grandchild', 3001, 3002, 1001);
\ No newline at end of file + (4001, '/parent-1', 3001, null, 1001), + (4002, '/parent-2', 3001, null, 1001), + (4003, '/parent-3', 3001, null, 1001), + (4004, '/parent-1/child-1', 3001, 4001, 1001), + (4005, '/parent-2/child-2', 3001, 4002, 1001), + (4006, '/parent-1/child-1/grandchild-1', 3001, 4004, 1001);
\ No newline at end of file |