macro_rules! make_udf_function_with_config {
($UDF:ty, $NAME:ident) => { ... };
}Expand description
Creates a singleton ScalarUDF of the $UDF function and a function
named $NAME which returns that singleton. The function takes a
configuration argument of type $CONFIG_TYPE to create the UDF.