(&self, field: &str)
| 619 | } |
| 620 | |
| 621 | pub fn is_not_null(&self, field: &str) -> Result<Predicate> { |
| 622 | self.leaf(field, PredicateOperator::IsNotNull, vec![]) |
| 623 | } |
| 624 | |
| 625 | /// Build a partition predicate: AND of equal/is_null for each (field_name, datum) pair. |
| 626 | pub fn partition_predicate(&self, fields: &[(&str, Option<Datum>)]) -> Result<Predicate> { |
no test coverage detected