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

Function paimon_predicate_less_than

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

786/// `table` and `column` must be valid pointers.
787#[no_mangle]
788pub unsafe extern "C" fn paimon_predicate_less_than(
789 table: *const paimon_table,
790 column: *const std::ffi::c_char,
791 datum: paimon_datum,
792) -> paimon_result_predicate {
793 build_leaf_predicate_datum(table, column, &datum, |pb, col, d| pb.less_than(col, d))
794}
795
796/// Create a less-or-equal predicate: `column <= datum`.
797///

Callers

nothing calls this directly

Calls 2

less_thanMethod · 0.80

Tested by

no test coverage detected