This is an automated email from the ASF dual-hosted git repository.
smiklosovic pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra.git
The following commit(s) were added to refs/heads/trunk by this push:
new 80938477ef ninja: get rid of warning during compilation in
AccordCQLTestBase.setComplexWithReferenceOnAnotherColumn test by casting
stmt.bindsEncoded() value to Object[] to pass to var-arg method
80938477ef is described below
commit 80938477ef2726ecacce4190c8c75b131c402862
Author: Stefan Miklosovic <[email protected]>
AuthorDate: Wed Oct 29 16:59:38 2025 +0100
ninja: get rid of warning during compilation in
AccordCQLTestBase.setComplexWithReferenceOnAnotherColumn test by casting
stmt.bindsEncoded() value to Object[] to pass to var-arg method
---
.../org/apache/cassandra/distributed/test/accord/AccordCQLTestBase.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/test/distributed/org/apache/cassandra/distributed/test/accord/AccordCQLTestBase.java
b/test/distributed/org/apache/cassandra/distributed/test/accord/AccordCQLTestBase.java
index da972c9432..a774889711 100644
---
a/test/distributed/org/apache/cassandra/distributed/test/accord/AccordCQLTestBase.java
+++
b/test/distributed/org/apache/cassandra/distributed/test/accord/AccordCQLTestBase.java
@@ -3258,7 +3258,7 @@ public abstract class AccordCQLTestBase extends
AccordTestBase
.value("c", 0)
.build())
.build();
- coordinator.execute(stmt.toCQL(), QUORUM,
stmt.bindsEncoded());
+ coordinator.execute(stmt.toCQL(), QUORUM, (Object[])
stmt.bindsEncoded());
// is the data correct?
var result = coordinator.executeWithResult("SELECT * FROM " +
qualifiedAccordTableName, QUORUM);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]