MCPcopy Create free account
hub / github.com/apache/datafusion / values

Method values

datafusion/expr-common/src/interval_arithmetic.rs:1858–1863  ·  view source on GitHub ↗

Get the values interval, or None if this interval is definitely null.

(&self)

Source from the content-addressed store, hash-verified

1856
1857 /// Get the values interval, or None if this interval is definitely null.
1858 pub fn values(&self) -> Option<&Interval> {
1859 match self {
1860 Self::Null { .. } => None,
1861 Self::MaybeNull { values } | Self::NotNull { values } => Some(values),
1862 }
1863 }
1864
1865 /// Get the data type
1866 pub fn data_type(&self) -> DataType {

Callers 4

andMethod · 0.45
orMethod · 0.45
apply_operatorMethod · 0.45
containsMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected