diff options
author | Nelson,Thomas(tn1381)(arthurdent3) <tn1381@att.com> | 2018-09-19 17:45:41 -0400 |
---|---|---|
committer | Nelson,Thomas(tn1381)(arthurdent3) <tn1381@att.com> | 2018-09-19 19:07:48 -0400 |
commit | 5d7183c56ee613b5fb3f03ff2f64a6a0ed646e86 (patch) | |
tree | 4a5e21b21671a6c1a8a81eff786e282e43625f86 /test/csit/scripts/music/cql/admin.cql | |
parent | 98814dc1f03c74c2d12ddae1f4859321a6f24840 (diff) |
Update CSIT Test to work with new Images.
Minor changes
Some cleanup and Output Changes
Change-Id: Id16ce27e878f295a8adc4fd2736698f2ad471f17
Issue-ID: MUSIC-138
Signed-off-by: Nelson,Thomas(tn1381)(arthurdent3) <tn1381@att.com>
Diffstat (limited to 'test/csit/scripts/music/cql/admin.cql')
-rw-r--r-- | test/csit/scripts/music/cql/admin.cql | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/test/csit/scripts/music/cql/admin.cql b/test/csit/scripts/music/cql/admin.cql new file mode 100644 index 000000000..65b4dbf93 --- /dev/null +++ b/test/csit/scripts/music/cql/admin.cql @@ -0,0 +1,19 @@ +CREATE KEYSPACE IF NOT EXISTS admin + WITH REPLICATION = { + 'class' : 'SimpleStrategy', + 'replication_factor': 1 + } + AND DURABLE_WRITES = true; + +CREATE TABLE IF NOT EXISTS admin.keyspace_master ( + uuid uuid, + keyspace_name text, + application_name text, + is_api boolean, + password text, + username text, + is_aaf boolean, + PRIMARY KEY (uuid) +); + +describe keyspace admin; |