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