(&self, field: &str, literal: Datum)
| 601 | } |
| 602 | |
| 603 | pub fn less_or_equal(&self, field: &str, literal: Datum) -> Result<Predicate> { |
| 604 | self.leaf(field, PredicateOperator::LtEq, vec![literal]) |
| 605 | } |
| 606 | |
| 607 | pub fn greater_than(&self, field: &str, literal: Datum) -> Result<Predicate> { |
| 608 | self.leaf(field, PredicateOperator::Gt, vec![literal]) |
no test coverage detected