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