HBASE-26312 Shell scan fails with timestamp (#3734)

Signed-off-by: Duo Zhang <zhangduo@apache.org>
This commit is contained in:
xicm 2021-10-09 10:28:25 +08:00 committed by GitHub
parent c410baebe3
commit 7832518d8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -556,7 +556,7 @@ EOF
end
scan.setScanMetricsEnabled(enablemetrics) if enablemetrics
scan.setTimeStamp(timestamp) if timestamp
scan.setTimestamp(timestamp) if timestamp
scan.setCacheBlocks(cache_blocks)
scan.setReversed(reversed)
scan.setCaching(cache) if cache > 0

View File

@ -35,6 +35,6 @@ public class TestTableShell extends AbstractTestShell {
@Override
protected String getIncludeList() {
return "test_table.rb";
return "table_test.rb";
}
}