MCPcopy Create free account
hub / github.com/apache/paimon-rust / less_or_equal

Method less_or_equal

crates/paimon/src/spec/predicate.rs:603–605  ·  view source on GitHub ↗
(&self, field: &str, literal: Datum)

Source from the content-addressed store, hash-verified

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])

Calls 1

leafMethod · 0.80

Tested by

no test coverage detected