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 <[email protected]> wrote: > 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 >
