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

Function paimon_predicate_not_equal

bindings/c/src/table.rs:775–781  ·  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

773/// `table` and `column` must be valid pointers.
774#[no_mangle]
775pub unsafe extern "C" fn paimon_predicate_not_equal(
776 table: *const paimon_table,
777 column: *const std::ffi::c_char,
778 datum: paimon_datum,
779) -> paimon_result_predicate {
780 build_leaf_predicate_datum(table, column, &datum, |pb, col, d| pb.not_equal(col, d))
781}
782
783/// Create a less-than predicate: `column < datum`.
784///

Callers

nothing calls this directly

Calls 2

not_equalMethod · 0.80

Tested by

no test coverage detected