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

Method equal

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

Source from the content-addressed store, hash-verified

589 // -- comparison operators --
590
591 pub fn equal(&self, field: &str, literal: Datum) -> Result<Predicate> {
592 self.leaf(field, PredicateOperator::Eq, vec![literal])
593 }
594
595 pub fn not_equal(&self, field: &str, literal: Datum) -> Result<Predicate> {
596 self.leaf(field, PredicateOperator::NotEq, vec![literal])

Calls 1

leafMethod · 0.80

Tested by

no test coverage detected