本文整理汇总了Java中org.apache.hadoop.hive.ql.plan.ExprNodeGenericFuncDesc.getGenericUDF方法的典型用法代码示例。如果您正苦于以下问题:Java ExprNodeGenericFuncDesc.getGenericUDF方法的具体用法?Java ExprNodeGenericFuncDesc.getGenericUDF怎么用?Java ExprNodeGenericFuncDesc.getGenericUDF使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.hadoop.hive.ql.plan.ExprNodeGenericFuncDesc
的用法示例。
在下文中一共展示了ExprNodeGenericFuncDesc.getGenericUDF方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addChildNode
import org.apache.hadoop.hive.ql.plan.ExprNodeGenericFuncDesc; //导入方法依赖的package包/类
@Override
public void addChildNode( final ExprNodeGenericFuncDesc exprNodeDesc ){
GenericUDF udf = exprNodeDesc.getGenericUDF();
if( udf instanceof GenericUDFOPAnd ){
childNodeList.add( new HiveExprAndNode( exprNodeDesc.getChildren() ) );
}
else if( udf instanceof GenericUDFOPOr ){
childNodeList.add( new HiveExprOrNode( exprNodeDesc.getChildren() ) );
}
else if( udf instanceof GenericUDFOPNot ){
childNodeList.add( new HiveExprNotNode( exprNodeDesc.getChildren() ) );
}
else{
childNodeList.add( HiveExprFactory.get( exprNodeDesc , udf , exprNodeDesc.getChildren() ) );
}
}
示例2: getExtractNodeFromGenericFunc
import org.apache.hadoop.hive.ql.plan.ExprNodeGenericFuncDesc; //导入方法依赖的package包/类
public static IExtractNode getExtractNodeFromGenericFunc( final ExprNodeGenericFuncDesc target ){
GenericUDF udf = target.getGenericUDF();
if( ! ( udf instanceof GenericUDFIndex ) ){
return null;
}
return getExtractNodeFromGenericIndex( target , (GenericUDFIndex)udf );
}
示例3: buildQuery
import org.apache.hadoop.hive.ql.plan.ExprNodeGenericFuncDesc; //导入方法依赖的package包/类
protected static void buildQuery(ExprNodeDesc input, StringBuilder fq, StringBuilder q) {
if (input instanceof ExprNodeGenericFuncDesc) {
ExprNodeGenericFuncDesc inputFunc = (ExprNodeGenericFuncDesc)input;
ExprNodeDesc inputLeft = inputFunc.getChildren().get(0);
ExprNodeDesc inputRight = inputFunc.getChildren().get(1);
if ((inputFunc.getGenericUDF() instanceof GenericUDFOPOr) || (inputFunc.getGenericUDF() instanceof GenericUDFOPAnd)) {
StringBuilder fqLeft = new StringBuilder();
StringBuilder fqRight = new StringBuilder();
buildQuery(inputLeft,fqLeft,q);
buildQuery(inputRight,fqRight,q);
if (fqLeft.length()>0 && fqRight.length()>0) {
fq.append("(").append(fqLeft).append(") ");
fq.append( (inputFunc.getGenericUDF() instanceof GenericUDFOPOr) ? "OR" : "AND");
fq.append("(").append(fqRight).append(") ");
} else if (fqLeft.length()>0) {
fq.append(fqLeft);
} else if (fqRight.length()>0) {
fq.append(fqRight);
}
} else if (inputFunc.getGenericUDF() instanceof GenericUDFOPEqual) {
if ((inputLeft instanceof ExprNodeColumnDesc) && (inputRight instanceof ExprNodeConstantDesc)) {
if (((ExprNodeColumnDesc)inputLeft).getColumn().equalsIgnoreCase("solr_query")) {
q.append(((ExprNodeConstantDesc)inputRight).getValue().toString());
} else {
fq.append(((ExprNodeColumnDesc)inputLeft).getColumn());
fq.append(":");
fq.append(((ExprNodeConstantDesc)inputRight).getValue().toString());
}
} else {
if (((ExprNodeColumnDesc)inputRight).getColumn().equalsIgnoreCase("solr_query")) {
q.append(((ExprNodeConstantDesc)inputLeft).getValue());
} else {
fq.append(((ExprNodeColumnDesc)inputRight).getColumn());
fq.append(":");
fq.append(((ExprNodeConstantDesc)inputLeft).getValue().toString());
}
}
}
}
return;
}