diff options
author | Toine Siebelink <toine.siebelink@est.tech> | 2022-06-02 11:30:34 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2022-06-02 11:30:34 +0000 |
commit | 002fb164cde7079cb3cac65a14b74fec9588ddc5 (patch) | |
tree | 79d308c6e76f250118f561bf0295d8cd397d4ae5 /cps-ri/src/test/resources/data/fragment.sql | |
parent | 240fbe95dde33a2a06618579a93c247e9bb56c5e (diff) | |
parent | 75a716328ab575ca81763f9b37285562ed6b8a58 (diff) |
Merge "Add module name to cps core output"
Diffstat (limited to 'cps-ri/src/test/resources/data/fragment.sql')
-rwxr-xr-x | cps-ri/src/test/resources/data/fragment.sql | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/cps-ri/src/test/resources/data/fragment.sql b/cps-ri/src/test/resources/data/fragment.sql index 4106541061..fd05900e28 100755 --- a/cps-ri/src/test/resources/data/fragment.sql +++ b/cps-ri/src/test/resources/data/fragment.sql @@ -27,6 +27,27 @@ INSERT INTO DATASPACE (ID, NAME) VALUES INSERT INTO SCHEMA_SET (ID, NAME, DATASPACE_ID) VALUES (2001, 'SCHEMA-SET-001', 1001); +INSERT INTO YANG_RESOURCE (ID, NAME, CONTENT, CHECKSUM, MODULE_NAME, REVISION) VALUES + (4001, 'TEST','', 'SAMPLECHECKSUM','TESTMODULENAME', 'SAMPLEREVISION'); + +UPDATE YANG_RESOURCE SET +content = 'module stores { + yang-version 1.1; + namespace "org:onap:ccsdk:sample"; + + prefix book-store; + + revision "2020-09-15" { + description + "Sample Model"; + } + } +' +where ID = 4001; + +INSERT INTO SCHEMA_SET_YANG_RESOURCES (SCHEMA_SET_ID, YANG_RESOURCE_ID) VALUES + (2001, 4001); + INSERT INTO ANCHOR (ID, NAME, DATASPACE_ID, SCHEMA_SET_ID) VALUES (3001, 'ANCHOR-001', 1001, 2001), (3003, 'ANCHOR-003', 1001, 2001), |