From 4d33a2c39c4a182b9c0673eb3d1cb05daa721c81 Mon Sep 17 00:00:00 2001 From: Mikita Hradovich Date: Fri, 14 Aug 2026 15:30:31 +0200 Subject: [PATCH] test: skip the third WarningsTest method under Scylla All three tests in WarningsTest require the server to emit Cassandra's "Aggregation query used without partition key" warning for SELECT count(*), which Scylla does not send. Two were annotated in "Disable ITs which fail under Scylla" (f475ebd1be); this one was missed because its `isolated` group was not run at the time, so it was never observed to fail. The matrix started running that group in June 2026, and the failure has since been worked around in a single version's patch file rather than fixed here. Annotate it like its two siblings so the file is self-consistent and future tags need no patch hunk. Nothing to fix driver-side: getWarnings() correctly reports that the server sent no warning. Co-Authored-By: Claude Opus 5 (1M context) --- .../src/test/java/com/datastax/driver/core/WarningsTest.java | 1 + 1 file changed, 1 insertion(+) diff --git a/driver-core/src/test/java/com/datastax/driver/core/WarningsTest.java b/driver-core/src/test/java/com/datastax/driver/core/WarningsTest.java index a2f0b5b6f5b..cef92af2b04 100644 --- a/driver-core/src/test/java/com/datastax/driver/core/WarningsTest.java +++ b/driver-core/src/test/java/com/datastax/driver/core/WarningsTest.java @@ -115,6 +115,7 @@ public void should_execute_query_and_log_server_side_warnings() throws Exception } @Test(groups = "isolated") + @ScyllaSkip /* @IntegrationTestDisabledScyllaFailure */ @CassandraVersion("3.0.0") public void should_execute_query_and_not_log_server_side_warnings() throws Exception { // Get the system property value for disabling logging server side warnings