}
public static void registerUDAF(boolean isNative, String functionName,
Class<? extends UDAF> udafClass) {
mFunctions.put(functionName.toLowerCase(), new FunctionInfo(isNative,
functionName.toLowerCase(), new GenericUDAFBridge(
(UDAF) ReflectionUtils.newInstance(udafClass, null))));
}