quackdb_internal::ffi

Function duckdb_create_config

Source
pub unsafe extern "C" fn duckdb_create_config(
    out_config: *mut *mut _duckdb_config,
) -> u32
Expand 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.