Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
2.0.2
-
None
-
hbase server 2.0.2
hbase client 2.0.0
-
There was a bug when scan with the same startRow(inclusive=true) and stopRow(inclusive=false). The old incorrect behavior is return one result. After this fix, the new correct behavior is return nothing.
Description
I expect the following code to return none result, but still return a row:
byte[] rowkey = "some key existed"; Scan scan = new Scan(); scan.withStartRow(rowkey, true); scan.withStopRow(rowkey, false); htable.getScanner(scan);
Attachments
Attachments
Issue Links
- links to