Package org.apache.pig

Examples of org.apache.pig.Expression$InExpression


          LogicalExpressionPlan filterExprCopy = filterExpr.deepCopy();
         
          PColFilterExtractor pColFilterFinder = new PColFilterExtractor(
                  filterExprCopy, getMappedKeys( partitionKeys ) );
          pColFilterFinder.visit();
          Expression partitionFilter = pColFilterFinder.getPColCondition();
         
          if(partitionFilter != null) {
            // the column names in the filter may be the ones provided by
            // the user in the schema in the load statement - we may need
            // to replace them with partition column names as given by
View Full Code Here


   * @return the condition on partition columns extracted from filter
   */
  public  Expression getPColCondition(){
    if(!canPushDown || pColConditions.size() == 0)
        return null;
    Expression cond =  pColConditions.get(0);
    for(int i=1; i<pColConditions.size(); i++){
      //if there is more than one condition expression
      // connect them using "AND"s
      cond = new Expression.BinaryExpression(cond, pColConditions.get(i),
                    OpType.OP_AND);
View Full Code Here

TOP

Related Classes of org.apache.pig.Expression$InExpression

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.