mirror of https://github.com/apache/cassandra
ninja: get rid of warning during compilation in AccordCQLTestBase.setComplexWithReferenceOnAnotherColumn test by casting stmt.bindsEncoded() value to Object[] to pass to var-arg method
This commit is contained in:
parent
397c2668bc
commit
80938477ef
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue