List Database Functions (DuckDB/MotherDuck)
list_fns.RdReturns a lazy table listing available SQL functions from the current
DuckDB/MotherDuck connection using duckdb_functions().
Value
A dbplyr lazy tibble (tbl_dbi) with function metadata (e.g.,
function_name, schema, is_aggregate, is_alias, etc.).
Details
This wrapper validates the connection and then queries
duckdb_functions() to enumerate function metadata. The result is a
dbplyr lazy tibble (tbl_dbi); call collect() to materialize it in R.