ToineSiebelink | f0527c5 | 2021-07-06 13:03:03 +0100 | [diff] [blame] | 1 | /* |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2020 Pantheon.tech |
danielhanrahan | fbb79a0 | 2023-02-15 19:00:37 +0000 | [diff] [blame] | 4 | Modifications Copyright (C) 2020-2023 Nordix Foundation. |
Renu Kumari | 5427ef0 | 2022-01-20 12:07:38 -0500 | [diff] [blame] | 5 | Modifications Copyright (C) 2021-2022 Bell Canada. |
ToineSiebelink | f0527c5 | 2021-07-06 13:03:03 +0100 | [diff] [blame] | 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | |
| 19 | SPDX-License-Identifier: Apache-2.0 |
| 20 | ============LICENSE_END========================================================= |
| 21 | */ |
| 22 | |
Ruslan Kashapov | 8a1e3c9 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 23 | INSERT INTO DATASPACE (ID, NAME) VALUES |
niamhcore | 09c6b6e | 2021-11-22 11:44:38 +0000 | [diff] [blame] | 24 | (1001, 'DATASPACE-001'), |
Renu Kumari | 5427ef0 | 2022-01-20 12:07:38 -0500 | [diff] [blame] | 25 | (1002, 'DATASPACE-002-NO-DATA'), |
niamhcore | 09c6b6e | 2021-11-22 11:44:38 +0000 | [diff] [blame] | 26 | (1003, 'DATASPACE-003'); |
Ruslan Kashapov | 8a1e3c9 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 27 | |
| 28 | INSERT INTO SCHEMA_SET (ID, NAME, DATASPACE_ID) VALUES |
niamhcore | 09c6b6e | 2021-11-22 11:44:38 +0000 | [diff] [blame] | 29 | (2001, 'SCHEMA-SET-001', 1001), |
| 30 | (2002, 'SCHEMA-SET-002', 1001), |
Renu Kumari | 5427ef0 | 2022-01-20 12:07:38 -0500 | [diff] [blame] | 31 | (2003, 'SCHEMA-SET-002-NO-ANCHORS', 1003); |
Ruslan Kashapov | 8a1e3c9 | 2020-11-24 11:13:43 +0200 | [diff] [blame] | 32 | |
Ruslan Kashapov | 49fe075 | 2021-01-11 16:44:32 +0200 | [diff] [blame] | 33 | INSERT INTO ANCHOR (ID, NAME, DATASPACE_ID, SCHEMA_SET_ID) VALUES |
| 34 | (3001, 'ANCHOR-001', 1001, 2001), |
danielhanrahan | fbb79a0 | 2023-02-15 19:00:37 +0000 | [diff] [blame] | 35 | (3002, 'ANCHOR-002', 1001, 2002), |
| 36 | (3003, 'ANCHOR-003', 1001, 2002); |
Ruslan Kashapov | 4b8ae57 | 2021-04-05 12:59:57 +0300 | [diff] [blame] | 37 | |
| 38 | INSERT INTO FRAGMENT (ID, DATASPACE_ID, ANCHOR_ID, PARENT_ID, XPATH, ATTRIBUTES) VALUES |
ToineSiebelink | f0527c5 | 2021-07-06 13:03:03 +0100 | [diff] [blame] | 39 | (4001, 1001, 3001, null, '/xpath', '{}'); |