(
table: *const paimon_table,
column: *const std::ffi::c_char,
datum: paimon_datum,
)
| 799 | /// `table` and `column` must be valid pointers. |
| 800 | #[no_mangle] |
| 801 | pub 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 | /// |
nothing calls this directly
no test coverage detected