This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Looks like the filter functionality is not working. Has that been implemented yet? I was trying to do the following operation but the filter was being ignored based on my results because my result was showing everything in my table and not filtering. Please advice. Thanks. | |
FilterList list = new FilterList(FilterList.Operator.MUST_PASS_ALL); | |
SingleColumnValueFilter filter1 = new SingleColumnValueFilter("myColFam".getBytes(), "myCol".getBytes(), CompareOp.EQUAL, Bytes.toBytes("myValue")); | |
list.addFilter(filter1); | |
scan.setFilter(list); | |
ResultScanner scanner = table.getScanner(scan); | |
List<String> rowKeyList = new ArrayList<String>(); | |
for (Result result : scanner) { |