assertEquals(ve.getChildExpressions()[0].getClass(), LongColGreaterLongScalar.class);
}
@Test
public void testVectorizeScalarColumnExpression() throws HiveException {
GenericUDFOPMinus gudf = new GenericUDFOPMinus();
List<ExprNodeDesc> children = new ArrayList<ExprNodeDesc>(2);
ExprNodeConstantDesc constDesc = new ExprNodeConstantDesc(TypeInfoFactory.longTypeInfo, 20);
ExprNodeColumnDesc colDesc = new ExprNodeColumnDesc(Long.class, "a", "table", false);
children.add(constDesc);