datafusion_functions_table

Macro create_udtf_function

Source
macro_rules! create_udtf_function {
    ($module:path, $name:expr) => { ... };
}
Expand description

Creates a singleton instance of a table function

  • $module: A struct implementing TableFunctionImpl 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.