Function duckdb_cast_function_set_row_error

Source
pub unsafe extern "C" fn duckdb_cast_function_set_row_error(
    info: duckdb_function_info,
    error: *const c_char,
    row: idx_t,
    output: duckdb_vector,
)
Expand description

Report that an error has occurred while executing the cast function, setting the corresponding output row to NULL.

@param info The info object. @param error The error message. @param row The index of the row within the output vector to set to NULL. @param output The output vector.