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

Function paimon_predicate_greater_than

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

812/// `table` and `column` must be valid pointers.
813#[no_mangle]
814pub unsafe extern "C" fn paimon_predicate_greater_than(
815 table: *const paimon_table,
816 column: *const std::ffi::c_char,
817 datum: paimon_datum,
818) -> paimon_result_predicate {
819 build_leaf_predicate_datum(table, column, &datum, |pb, col, d| pb.greater_than(col, d))
820}
821
822/// Create a greater-or-equal predicate: `column >= datum`.
823///

Callers

nothing calls this directly

Calls 2

greater_thanMethod · 0.80

Tested by

no test coverage detected