use of org.apache.hadoop.hive.ql.parse.QBSubQuery.SubQueryTypeDef in project hive by apache.
the class SubQueryUtils method buildSQOperator.
static SubQueryTypeDef buildSQOperator(ASTNode astSQOp) throws SemanticException {
ASTNode opAST = (ASTNode) astSQOp.getChild(0);
SubQueryType type = SubQueryType.get(opAST);
return new SubQueryTypeDef(opAST, type);
}
Aggregations