// If there are previous nodes, then AND the current node with the previous one
List<ExprNodeDesc> childrenAND = new ArrayList<ExprNodeDesc>();
childrenAND.add(currExprNodeDesc);
childrenAND.add(expr);
currExprNodeDesc =
ExprNodeGenericFuncDesc.newInstance(new GenericUDFOPAnd(), childrenAND);
}
}
// If there are more than one skewed values,
// then OR the current node with the previous one