azexcy commented on code in PR #21526:
URL: https://github.com/apache/shardingsphere/pull/21526#discussion_r994574548
##########
kernel/data-pipeline/core/src/test/java/org/apache/shardingsphere/data/pipeline/core/check/consistency/algorithm/fixture/FixturePipelineSQLBuilder.java:
##########
@@ -76,6 +76,11 @@ public String buildChunkedQuerySQL(final String schemaName,
final String tableNa
return "";
}
+ @Override
+ public String buildChunkedQueryUniqueKeySQL(final String schemaName, final
String tableName, final String uniqueKey, final boolean firstQuery) {
+ return String.format("SELECT %s FROM %s ORDER BY %s ASC LIMIT ?",
uniqueKey, tableName, uniqueKey);
+ }
Review Comment:
Changed to "", just use to Just to adapt unit tests
--
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]