(
table: *const paimon_table,
column: *const std::ffi::c_char,
datum: paimon_datum,
)
| 760 | /// `table` and `column` must be valid pointers. |
| 761 | #[no_mangle] |
| 762 | pub unsafe extern "C" fn paimon_predicate_equal( |
| 763 | table: *const paimon_table, |
| 764 | column: *const std::ffi::c_char, |
| 765 | datum: paimon_datum, |
| 766 | ) -> paimon_result_predicate { |
| 767 | build_leaf_predicate_datum(table, column, &datum, |pb, col, d| pb.equal(col, d)) |
| 768 | } |
| 769 | |
| 770 | /// Create a not-equal predicate: `column != datum`. |
| 771 | /// |
nothing calls this directly
no test coverage detected