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

Function paimon_predicate_equal

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

Source from the content-addressed store, hash-verified

760/// `table` and `column` must be valid pointers.
761#[no_mangle]
762pub unsafe extern "C" fn paimon_predicate_equal(
763 table: *const paimon_table,
764 column: *const std::ffi::c_char,
765 datum: paimon_datum,
766) -> paimon_result_predicate {
767 build_leaf_predicate_datum(table, column, &datum, |pb, col, d| pb.equal(col, d))
768}
769
770/// Create a not-equal predicate: `column != datum`.
771///

Callers

nothing calls this directly

Calls 2

equalMethod · 0.80

Tested by

no test coverage detected