Function libduckdb_sys::duckdb_arrow_scan

source ·
pub unsafe extern "C" fn duckdb_arrow_scan(
    connection: duckdb_connection,
    table_name: *const c_char,
    arrow: duckdb_arrow_stream
) -> duckdb_state
Expand description

Scans the Arrow stream and creates a view with the given name.

connection: The connection on which to execute the scan. table_name: Name of the temporary view to create. arrow: Arrow stream wrapper. returns: DuckDBSuccess on success or DuckDBError on failure.