(
table: *const paimon_table,
column: *const std::ffi::c_char,
)
| 840 | /// `table` and `column` must be valid pointers. |
| 841 | #[no_mangle] |
| 842 | pub unsafe extern "C" fn paimon_predicate_is_null( |
| 843 | table: *const paimon_table, |
| 844 | column: *const std::ffi::c_char, |
| 845 | ) -> paimon_result_predicate { |
| 846 | build_leaf_predicate(table, column, |pb, col| pb.is_null(col)) |
| 847 | } |
| 848 | |
| 849 | /// Create an IS NOT NULL predicate. |
| 850 | /// |
nothing calls this directly
no test coverage detected