(
table: *const paimon_table,
column: *const std::ffi::c_char,
datum: paimon_datum,
)
| 773 | /// `table` and `column` must be valid pointers. |
| 774 | #[no_mangle] |
| 775 | pub unsafe extern "C" fn paimon_predicate_not_equal( |
| 776 | table: *const paimon_table, |
| 777 | column: *const std::ffi::c_char, |
| 778 | datum: paimon_datum, |
| 779 | ) -> paimon_result_predicate { |
| 780 | build_leaf_predicate_datum(table, column, &datum, |pb, col, d| pb.not_equal(col, d)) |
| 781 | } |
| 782 | |
| 783 | /// Create a less-than predicate: `column < datum`. |
| 784 | /// |
nothing calls this directly
no test coverage detected