Function libduckdb_sys::duckdb_appender_column_type

source ·
pub unsafe extern "C" fn duckdb_appender_column_type(
    appender: duckdb_appender,
    col_idx: idx_t
) -> duckdb_logical_type
Expand description

Returns the type of the column at the specified index.

Note: The resulting type should be destroyed with duckdb_destroy_logical_type.

appender The appender to get the column type from. col_idx The index of the column to get the type of. returns: The duckdb_logical_type of the column.