Get the values interval, or None if this interval is definitely null.
(&self)
| 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 { |
no outgoing calls
no test coverage detected