Include quoted index names in describe test

Project: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/commit/f2925484
Tree: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/tree/f2925484
Diff: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/diff/f2925484

Branch: refs/heads/master
Commit: f2925484f8e3375a3373b689b425a80f7ec54f36
Parents: 6540ba4
Author: Sam Tunnicliffe <s...@beobal.com>
Authored: Thu Oct 27 09:25:26 2016 +0100
Committer: Philip Thompson <ptnapol...@gmail.com>
Committed: Thu May 11 14:24:05 2017 -0400

----------------------------------------------------------------------
 cqlsh_tests/cqlsh_tests.py | 17 +++++++++++++----
 1 file changed, 13 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra-dtest/blob/f2925484/cqlsh_tests/cqlsh_tests.py
----------------------------------------------------------------------
diff --git a/cqlsh_tests/cqlsh_tests.py b/cqlsh_tests/cqlsh_tests.py
index caacaa5..7734848 100644
--- a/cqlsh_tests/cqlsh_tests.py
+++ b/cqlsh_tests/cqlsh_tests.py
@@ -688,6 +688,7 @@ VALUES (4, blobAsInt(0x), '', blobAsBigint(0x), 0x, 
blobAsBoolean(0x), blobAsDec
                 CREATE KEYSPACE test WITH REPLICATION = {'class' : 
'SimpleStrategy', 'replication_factor' : 1};
                 CREATE TABLE test.users ( userid text PRIMARY KEY, firstname 
text, lastname text, age int);
                 CREATE INDEX myindex ON test.users (age);
+                CREATE INDEX "QuotedNameIndex" on test.users (firstName);
                 CREATE TABLE test.test (id int, col int, val text, PRIMARY 
KEY(id, col));
                 CREATE INDEX ON test.test (col);
                 CREATE INDEX ON test.test (val)
@@ -738,7 +739,8 @@ VALUES (4, blobAsInt(0x), '', blobAsBigint(0x), 0x, 
blobAsBoolean(0x), blobAsDec
         self.execute(cql='DESCRIBE test.myindex', expected_err="'myindex' not 
found in keyspace 'test'")
         self.execute(cql="""
                 CREATE TABLE test.users ( userid text PRIMARY KEY, firstname 
text, lastname text, age int);
-                CREATE INDEX myindex ON test.users (age)
+                CREATE INDEX myindex ON test.users (age);
+                CREATE INDEX "QuotedNameIndex" on test.users (firstname)
                 """)
         self.execute(cql="DESCRIBE test.users", 
expected_output=self.get_users_table_output())
         self.execute(cql='DESCRIBE test.myindex', 
expected_output=self.get_index_output('myindex', 'test', 'users', 'age'))
@@ -748,6 +750,10 @@ VALUES (4, blobAsInt(0x), '', blobAsBigint(0x), 0x, 
blobAsBoolean(0x), blobAsDec
         self.execute(cql='DESCRIBE test.myindex', expected_err="'myindex' not 
found in keyspace 'test'")
         self.execute(cql='CREATE INDEX myindex ON test.users (age)')
         self.execute(cql='DESCRIBE INDEX test.myindex', 
expected_output=self.get_index_output('myindex', 'test', 'users', 'age'))
+        self.execute(cql='DROP INDEX test."QuotedNameIndex"')
+        self.execute(cql='DESCRIBE test."QuotedNameIndex"', 
expected_err="'QuotedNameIndex' not found in keyspace 'test'")
+        self.execute(cql='CREATE INDEX "QuotedNameIndex" ON test.users 
(firstname)')
+        self.execute(cql='DESCRIBE INDEX test."QuotedNameIndex"', 
expected_output=self.get_index_output('"QuotedNameIndex"', 'test', 'users', 
'firstname'))
 
         # Alter table. Renaming indexed columns is not allowed, and since 3.0 
neither is dropping them
         # Prior to 3.0 the index would have been automatically dropped, but 
now we need to explicitly do that.
@@ -929,7 +935,8 @@ VALUES (4, blobAsInt(0x), '', blobAsBigint(0x), 0x, 
blobAsBoolean(0x), blobAsDec
             AND min_index_interval = 128
             AND read_repair_chance = 0.0
             AND speculative_retry = '99PERCENTILE';
-        """ + self.get_index_output('myindex', 'test', 'users', 'age')
+        """ + self.get_index_output('"QuotedNameIndex"', 'test', 'users', 
'firstname') \
+                   + "\n" + self.get_index_output('myindex', 'test', 'users', 
'age')
         elif self.cluster.version() >= LooseVersion('3.0'):
             return """
         CREATE TABLE test.users (
@@ -951,7 +958,8 @@ VALUES (4, blobAsInt(0x), '', blobAsBigint(0x), 0x, 
blobAsBoolean(0x), blobAsDec
             AND min_index_interval = 128
             AND read_repair_chance = 0.0
             AND speculative_retry = '99PERCENTILE';
-        """ + self.get_index_output('myindex', 'test', 'users', 'age')
+        """ + self.get_index_output('"QuotedNameIndex"', 'test', 'users', 
'firstname') \
+                   + "\n" + self.get_index_output('myindex', 'test', 'users', 
'age')
         else:
             return """
         CREATE TABLE test.users (
@@ -972,7 +980,8 @@ VALUES (4, blobAsInt(0x), '', blobAsBigint(0x), 0x, 
blobAsBoolean(0x), blobAsDec
             AND min_index_interval = 128
             AND read_repair_chance = 0.0
             AND speculative_retry = '99.0PERCENTILE';
-        """ + self.get_index_output('myindex', 'test', 'users', 'age')
+        """ + self.get_index_output('"QuotedNameIndex"', 'test', 'users', 
'firstname') \
+                   + "\n" + self.get_index_output('myindex', 'test', 'users', 
'age')
 
     def get_index_output(self, index, ks, table, col):
         return "CREATE INDEX {} ON {}.{} ({});".format(index, ks, table, col)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@cassandra.apache.org
For additional commands, e-mail: commits-h...@cassandra.apache.org

Reply via email to