duckdb_validity_row_is_valid

Function duckdb_validity_row_is_valid 

Source
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.

@param validity The validity mask, as obtained through duckdb_vector_get_validity @param row The row index @return true if the row is valid, false otherwise