MCPcopy Create free account
hub / github.com/apache/paimon-rust / paimon_predicate_is_null

Function paimon_predicate_is_null

bindings/c/src/table.rs:842–847  ·  view source on GitHub ↗
(
    table: *const paimon_table,
    column: *const std::ffi::c_char,
)

Source from the content-addressed store, hash-verified

840/// `table` and `column` must be valid pointers.
841#[no_mangle]
842pub unsafe extern "C" fn paimon_predicate_is_null(
843 table: *const paimon_table,
844 column: *const std::ffi::c_char,
845) -> paimon_result_predicate {
846 build_leaf_predicate(table, column, |pb, col| pb.is_null(col))
847}
848
849/// Create an IS NOT NULL predicate.
850///

Callers

nothing calls this directly

Calls 2

build_leaf_predicateFunction · 0.85
is_nullMethod · 0.80

Tested by

no test coverage detected