Add another Child to a Fragment that has already at least one Child
[cps.git] / cps-ri / src / test / resources / data / fragment.sql
1 INSERT INTO DATASPACE (ID, NAME) VALUES
2     (1001, 'DATASPACE-001');
3
4 INSERT INTO SCHEMA_SET (ID, NAME, DATASPACE_ID) VALUES
5     (2001, 'SCHEMA-SET-001', 1001);
6
7 INSERT INTO ANCHOR (ID, NAME, DATASPACE_ID, SCHEMA_SET_ID) VALUES
8     (3001, 'ANCHOR-001', 1001, 2001);
9
10 INSERT INTO FRAGMENT (ID, XPATH, ANCHOR_ID, PARENT_ID, DATASPACE_ID) VALUES
11     (4001, '/parent-1', 3001, null, 1001),
12     (4002, '/parent-2', 3001, null, 1001),
13     (4003, '/parent-3', 3001, null, 1001),
14     (4004, '/parent-1/child-1', 3001, 4001, 1001),
15     (4005, '/parent-2/child-2', 3001, 4002, 1001),
16     (4006, '/parent-1/child-1/grandchild-1', 3001, 4004, 1001);