pyarrow.compute.call_tabular_function#

pyarrow.compute.call_tabular_function(function_name, args=None, func_registry=None)#

Get a record batch iterator from a tabular function.

Parameters:
function_namestr

Name of the function.

argsiterable

The arguments to pass to the function. Accepted types depend on the specific function. Currently, only an empty args is supported.

func_registryFunctionRegistry

Optional function registry to use instead of the default global one.