n3nash commented on a change in pull request #2188:
URL: https://github.com/apache/hudi/pull/2188#discussion_r513536334
##########
File path:
hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/index/hbase/SparkHoodieHBaseIndex.java
##########
@@ -171,6 +173,10 @@ private Get generateStatement(String key) throws
IOException {
.addColumn(SYSTEM_COLUMN_FAMILY,
FILE_NAME_COLUMN).addColumn(SYSTEM_COLUMN_FAMILY, PARTITION_PATH_COLUMN);
}
+ private Get generateStatement(String key, long startTime, long endTime)
throws IOException {
+ return generateStatement(key).setTimeRange(startTime,endTime);
Review comment:
Surprised checkstyle is not failing for no space after the ","
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]