in src/main/java/org/apache/datasketches/hive/frequencies/DataToItemsSketchUDAF.java [42:65]
public GenericUDAFEvaluator getEvaluator(final GenericUDAFParameterInfo info)
throws SemanticException {
final ObjectInspector[] inspectors = info.getParameterObjectInspectors();
if (inspectors.length != 2) {
throw new UDFArgumentException("Two arguments expected");
}
if (inspectors[0].getCategory() != ObjectInspector.Category.PRIMITIVE) {
throw new UDFArgumentTypeException(0, "Primitive argument expected, but "
+ inspectors[0].getTypeName() + " was recieved");
}
if (inspectors[1].getCategory() != ObjectInspector.Category.PRIMITIVE) {
throw new UDFArgumentTypeException(0, "Primitive argument expected, but "
+ inspectors[1].getTypeName() + " was recieved");
}
final PrimitiveObjectInspector inspector2 = (PrimitiveObjectInspector) inspectors[1];
if (inspector2.getPrimitiveCategory() != PrimitiveObjectInspector.PrimitiveCategory.INT) {
throw new UDFArgumentTypeException(0, "Integer value expected as the second argument, but "
+ inspector2.getPrimitiveCategory().name() + " was received");
}
return createEvaluator();
}