skoppu22 commented on code in PR #333:
URL: https://github.com/apache/cassandra-sidecar/pull/333#discussion_r3234447252
##########
adapters/adapters-base/src/main/java/org/apache/cassandra/sidecar/adapters/base/CassandraTableOperations.java:
##########
@@ -65,6 +65,30 @@ public List<String> importNewSSTables(@NotNull String
keyspace,
copyData);
}
+ /**
+ * {@inheritDoc}
+ * <p>
+ * SAI index validation is only supported in Cassandra 5.0+; for older
versions these parameters are ignored.
+ */
+ @Override
+ public List<String> importNewSSTables(@NotNull String keyspace,
+ @NotNull String tableName,
+ @NotNull String directory,
+ boolean resetLevel,
+ boolean clearRepaired,
+ boolean verifySSTables,
+ boolean verifyTokens,
+ boolean invalidateCaches,
+ boolean extendedVerify,
+ boolean copyData,
+ boolean failOnMissingIndex,
+ boolean validateIndexChecksum)
+ {
+ return importNewSSTables(keyspace, tableName, directory, resetLevel,
+ clearRepaired, verifySSTables, verifyTokens,
+ invalidateCaches, extendedVerify, copyData);
+ }
Review Comment:
Done
--
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]