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

Method not_equal

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

Source from the content-addressed store, hash-verified

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

Calls 1

leafMethod · 0.80

Tested by

no test coverage detected