Re: How works scan ?

2017-08-30 Thread Ted Yu
Filter can be applied to Query. Both Scan and Get are subclasses of Query. For Scan, you have SetStartRow() and SetStopRow(). Take a look at core/scan.h for related methods. On Wed, Aug 30, 2017 at 10:17 AM, Andrzej wrote: > In folder hbase-native-client/core/ > I have

How works scan ?

2017-08-30 Thread Andrzej
In folder hbase-native-client/core/ I have example: Scan scan{}; //<--- here always {} ? auto scanner = table->Scan(scan); auto r = scanner->Next(); scanner->Close(); Scan walks from first to last row of table or can be more advanced (search row value)? Is other sample filter-test.cc