Map<String, Integer> columnMap = new HashMap<String, Integer>();
columnMap.put("b", 0);
columnMap.put("a", 1);
VectorizationContext vc = new VectorizationContext(columnMap, 2);
GenericUDF stringLower = new GenericUDFLower();
stringUnary.setGenericUDF(stringLower);
VectorExpression ve = vc.getVectorExpression(stringUnary);
assertEquals(StringLower.class, ve.getClass());