You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Jermy Li (JIRA)" <ji...@apache.org> on 2018/12/19 13:27:00 UTC

[jira] [Created] (HBASE-21618) Scan with the same startRow(inclusive=true) and stopRow(inclusive=false) returns one result

Jermy Li created HBASE-21618:
--------------------------------

             Summary: Scan with the same startRow(inclusive=true) and stopRow(inclusive=false) returns one result
                 Key: HBASE-21618
                 URL: https://issues.apache.org/jira/browse/HBASE-21618
             Project: HBase
          Issue Type: Bug
          Components: Client
    Affects Versions: 2.0.2
         Environment: hbase server 2.0.2
hbase client 2.0.0
            Reporter: Jermy Li


I expect the following code to return none result, but still return a row:
{code:java}
byte[] rowkey = "some key existed";
Scan scan = new Scan();
scan.withStartRow(rowkey, true);
scan.withStopRow(rowkey, false);
htable.getScanner(scan);
{code}





--
This message was sent by Atlassian JIRA
(v7.6.3#76005)