(&self, field: &str, literal: Datum)
| 593 | } |
| 594 | |
| 595 | pub fn not_equal(&self, field: &str, literal: Datum) -> Result<Predicate> { |
| 596 | self.leaf(field, PredicateOperator::NotEq, vec![literal]) |
| 597 | } |
| 598 | |
| 599 | pub fn less_than(&self, field: &str, literal: Datum) -> Result<Predicate> { |
| 600 | self.leaf(field, PredicateOperator::Lt, vec![literal]) |
no test coverage detected