pub unsafe extern "C" fn duckdb_table_description_create(
connection: duckdb_connection,
schema: *const c_char,
table: *const c_char,
out: *mut duckdb_table_description,
) -> duckdb_state
Expand description
Creates a table description object. Note that duckdb_table_description_destroy
should always be called on the
resulting table_description, even if the function returns DuckDBError
.
@param connection The connection context.
@param schema The schema of the table, or nullptr
for the default schema.
@param table The table name.
@param out The resulting table description object.
@return DuckDBSuccess
on success or DuckDBError
on failure.