Function quackdb_internal::ffi::duckdb_create_config
source · pub unsafe extern "C" fn duckdb_create_config(
out_config: *mut *mut _duckdb_config
) -> u32Expand description
Initializes an empty configuration object that can be used to provide start-up options for the DuckDB instance
through duckdb_open_ext.
This will always succeed unless there is a malloc failure.
out_config: The result configuration object.
returns: DuckDBSuccess on success or DuckDBError on failure.