adelapena commented on code in PR #2465:
URL: https://github.com/apache/cassandra/pull/2465#discussion_r1252957120
##########
test/unit/org/apache/cassandra/index/sai/cql/StorageAttachedIndexDDLTest.java:
##########
@@ -263,6 +263,120 @@ public void shouldCreateIndexIfExists()
assertEquals(1, saiCreationCounter.get());
}
+ @Test
+ public void shouldBeCaseSensitiveByDefault() throws Throwable
+ {
+ createTable("CREATE TABLE %s (id text PRIMARY KEY, val text)");
+
+ createIndex("CREATE CUSTOM INDEX ON %s(val) USING
'StorageAttachedIndex'");
+ waitForIndexQueryable();
Review Comment:
Since
[CASSANDRA-18521](https://issues.apache.org/jira/browse/CASSANDRA-18521)
`CQLTester#waitForIndexQueryable` requires an argument specifying the index
name. Its absence here produces a build error. Maybe it has been missed during
rebase?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]