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

Function paimon_predicate_less_or_equal

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

799/// `table` and `column` must be valid pointers.
800#[no_mangle]
801pub unsafe extern "C" fn paimon_predicate_less_or_equal(
802 table: *const paimon_table,
803 column: *const std::ffi::c_char,
804 datum: paimon_datum,
805) -> paimon_result_predicate {
806 build_leaf_predicate_datum(table, column, &datum, |pb, col, d| pb.less_or_equal(col, d))
807}
808
809/// Create a greater-than predicate: `column > datum`.
810///

Callers

nothing calls this directly

Calls 2

less_or_equalMethod · 0.80

Tested by

no test coverage detected