adelapena commented on code in PR #2465:
URL: https://github.com/apache/cassandra/pull/2465#discussion_r1252959403
##########
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:
Note that also `CQLTester#waitForTableIndexesQueryable` can be used to just
wait for all the indexes used by the table.
--
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]