duckdb_arrow_scan

Function 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

DEPRECATION NOTICE**: This method is scheduled for removal in a future release.

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

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