pub struct ValueStatistics<T> { /* private fields */ }
Expand description

Statistics for a particular ParquetValueType

Implementations§

source§

impl<T: ParquetValueType> ValueStatistics<T>

source

pub fn new( min: Option<T>, max: Option<T>, distinct_count: Option<u64>, null_count: u64, is_min_max_deprecated: bool ) -> Self

Creates new typed statistics.

source

pub fn with_min_is_exact(self, is_min_value_exact: bool) -> Self

Set whether the stored min field represents the exact minimum, or just a bound on the minimum value.

see Self::min_is_exact

source

pub fn with_max_is_exact(self, is_max_value_exact: bool) -> Self

Set whether the stored max field represents the exact maximum, or just a bound on the maximum value.

see Self::max_is_exact

source

pub fn with_backwards_compatible_min_max( self, backwards_compatible: bool ) -> Self

Set whether to write the deprecated min and max fields for compatibility with older parquet writers

This should only be enabled if the field is signed, see Self::is_min_max_backwards_compatible

source

pub fn min(&self) -> &T

Returns min value of the statistics.

Panics if min value is not set, e.g. all values are null. Use has_min_max_set method to check that.

source

pub fn max(&self) -> &T

Returns max value of the statistics.

Panics if max value is not set, e.g. all values are null. Use has_min_max_set method to check that.

source

pub fn min_bytes(&self) -> &[u8]

Returns min value as bytes of the statistics.

Panics if min value is not set, use has_min_max_set method to check if values are set.

source

pub fn max_bytes(&self) -> &[u8]

Returns max value as bytes of the statistics.

Panics if max value is not set, use has_min_max_set method to check if values are set.

source

pub fn has_min_max_set(&self) -> bool

Whether or not min and max values are set. Normally both min/max values will be set to Some(value) or None.

source

pub fn max_is_exact(&self) -> bool

Whether or not max value is set, and is an exact value.

source

pub fn min_is_exact(&self) -> bool

Whether or not min value is set, and is an exact value.

source

pub fn distinct_count(&self) -> Option<u64>

Returns optional value of number of distinct values occurring.

source

pub fn null_count(&self) -> u64

Returns null count.

source

pub fn is_min_max_backwards_compatible(&self) -> bool

Old versions of parquet stored statistics in min and max fields, ordered using signed comparison. This resulted in an undefined ordering for unsigned quantities, such as booleans and unsigned integers.

These fields were therefore deprecated in favour of min_value and max_value, which have a type-defined sort order.

However, not all readers have been updated. For backwards compatibility, this method returns true if the statistics within this have a signed sort order, that is compatible with being stored in the deprecated min and max fields

Trait Implementations§

source§

impl<T: Clone> Clone for ValueStatistics<T>

source§

fn clone(&self) -> ValueStatistics<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: ParquetValueType> Debug for ValueStatistics<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: ParquetValueType> Display for ValueStatistics<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: ParquetValueType> From<ValueStatistics<T>> for Statistics

source§

fn from(t: ValueStatistics<T>) -> Self

Converts to this type from the input type.
source§

impl<T: PartialEq> PartialEq for ValueStatistics<T>

source§

fn eq(&self, other: &ValueStatistics<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: Eq> Eq for ValueStatistics<T>

source§

impl<T> StructuralPartialEq for ValueStatistics<T>

Auto Trait Implementations§

§

impl<T> Freeze for ValueStatistics<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for ValueStatistics<T>
where T: RefUnwindSafe,

§

impl<T> Send for ValueStatistics<T>
where T: Send,

§

impl<T> Sync for ValueStatistics<T>
where T: Sync,

§

impl<T> Unpin for ValueStatistics<T>
where T: Unpin,

§

impl<T> UnwindSafe for ValueStatistics<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,