pub unsafe extern "C" fn duckdb_validity_row_is_valid(
validity: *mut u64,
row: idx_t,
) -> bool
Expand description
Returns whether or not a row is valid (i.e. not NULL) in the given validity mask.
validity: The validity mask, as obtained through duckdb_data_chunk_get_validity
row: The row index
returns: true if the row is valid, false otherwise