macro_rules! create_udtf_function {
($module:path, $name:expr) => { ... };
}
Expand description
Creates a singleton instance of a table function
$module
: A struct implementingTableFunctionImpl
to create the function from$name
: The name to give to the created function
This is used to ensure creating the list of TableFunction
only happens once.