pub unsafe extern "C" fn duckdb_append_data_chunk(
appender: duckdb_appender,
chunk: duckdb_data_chunk,
) -> duckdb_state
Expand description
Appends a pre-filled data chunk to the specified appender. Attempts casting, if the data chunk types do not match the active appender types.
@param appender The appender to append to.
@param chunk The data chunk to append.
@return DuckDBSuccess
on success or DuckDBError
on failure.