Package org.apache.hadoop.hive.ql.ppd

Examples of org.apache.hadoop.hive.ql.ppd.SyntheticJoinPredicate$JoinSynthetic


    if (HiveConf.getBoolVar(hiveConf, HiveConf.ConfVars.HIVEOPTPPD)) {
    transformations.add(new PredicateTransitivePropagate());
    if (HiveConf.getBoolVar(hiveConf, HiveConf.ConfVars.HIVEOPTCONSTANTPROPAGATION)) {
      transformations.add(new ConstantPropagate());
    }
      transformations.add(new SyntheticJoinPredicate());
      transformations.add(new PredicatePushDown());
    }
    if (HiveConf.getBoolVar(hiveConf, HiveConf.ConfVars.HIVEOPTCONSTANTPROPAGATION)) {
      // We run constant propagation twice because after predicate pushdown, filter expressions
      // are combined and may become eligible for reduction (like is not null filter).
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hive.ql.ppd.SyntheticJoinPredicate$JoinSynthetic

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.