From 5b719d1cdc23da0c95310933fee09753401075f9 Mon Sep 17 00:00:00 2001 From: niamhcore Date: Tue, 19 Jan 2021 12:45:44 +0000 Subject: Add another Child to a Fragment that has already at least one Child Issue-ID: CPS-164 Signed-off-by: niamhcore Change-Id: Ib6a4f8ce4fc9247726e016ecaa0b1e45ff11bdbb --- cps-ri/src/test/resources/data/fragment.sql | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'cps-ri/src/test/resources') diff --git a/cps-ri/src/test/resources/data/fragment.sql b/cps-ri/src/test/resources/data/fragment.sql index c50f59530..05f5bfe45 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 -- cgit 1.2.3-korg