Package org.apache.hadoop.hive.ql.plan.api

Examples of org.apache.hadoop.hive.ql.plan.api.OperatorType


    if (ops == null) {
      return EMPTY_ARR;
    }
    Set<String> features = Sets.newHashSet();
    for (Operator<?> op : ops) {
      OperatorType opType = op.getType();
      // some operators are discarded
      if (!skipType(opType)) {
        features.add(opType.toString());
      }
    }

    // if taskTag is other than 'NO_TAG', include it in the feature list
    if (taskTagId == Task.NO_TAG) {
View Full Code Here

TOP

Related Classes of org.apache.hadoop.hive.ql.plan.api.OperatorType

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.