taklwu commented on code in PR #7166: URL: https://github.com/apache/hbase/pull/7166#discussion_r2221038592
########## hbase-backup/src/main/java/org/apache/hadoop/hbase/backup/impl/IncrementalTableBackupClient.java: ########## @@ -136,7 +136,13 @@ protected static int getIndex(TableName tbl, List<TableName> sTableList) { protected List<BulkLoad> handleBulkLoad(List<TableName> tablesToBackup) throws IOException { List<String> activeFiles = new ArrayList<>(); List<String> archiveFiles = new ArrayList<>(); - List<BulkLoad> bulkLoads = backupManager.readBulkloadRows(tablesToBackup); + List<BulkLoad> bulkLoads = new ArrayList<>(); Review Comment: ```suggestion List<BulkLoad> bulkLoads = backupInfo.isContinuousBackupEnabled() ? backupManager.readBulkloadRows(tablesToBackup, backupInfo.getIncrCommittedWalTs()) : backupManager.readBulkloadRows(tablesToBackup); ``` -- 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: issues-unsubscr...@hbase.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org