Package org.apache.hadoop.hbase.index

Examples of org.apache.hadoop.hbase.index.GroupingCondition


  // this index. It is equivalent to c1=x and c2 btw min to max.
  // Default access for testability
  FilterNode evalFilterForIndexSelection(Filter filter, List<IndexSpecification> indices) {
    if (filter instanceof FilterList) {
      FilterList fList = (FilterList) filter;
      GroupingCondition condition =
          (fList.getOperator() == Operator.MUST_PASS_ALL) ? GroupingCondition.AND
              : GroupingCondition.OR;
      NonLeafFilterNode nonLeafFilterNode = new NonLeafFilterNode(condition);
      List<Filter> filters = fList.getFilters();
      for (Filter fltr : filters) {
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hbase.index.GroupingCondition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.