parquet::file::properties

Struct ColumnProperties

source
struct ColumnProperties {
    encoding: Option<Encoding>,
    codec: Option<Compression>,
    dictionary_enabled: Option<bool>,
    statistics_enabled: Option<EnabledStatistics>,
    max_statistics_size: Option<usize>,
    bloom_filter_properties: Option<BloomFilterProperties>,
}
Expand description

Container for column properties that can be changed as part of writer.

If a field is None, it means that no specific value has been set for this column, so some subsequent or default value must be used.

Fields§

§encoding: Option<Encoding>§codec: Option<Compression>§dictionary_enabled: Option<bool>§statistics_enabled: Option<EnabledStatistics>§max_statistics_size: Option<usize>§bloom_filter_properties: Option<BloomFilterProperties>

bloom filter related properties

Implementations§

source§

impl ColumnProperties

source

fn set_encoding(&mut self, value: Encoding)

Sets encoding for this column.

If dictionary is not enabled, this is treated as a primary encoding for a column. In case when dictionary is enabled for a column, this value is considered to be a fallback encoding.

Panics if user tries to set dictionary encoding here, regardless of dictionary encoding flag being set. Use set_dictionary_enabled method to enable dictionary for a column.

source

fn set_compression(&mut self, value: Compression)

Sets compression codec for this column.

source

fn set_dictionary_enabled(&mut self, enabled: bool)

Sets whether or not dictionary encoding is enabled for this column.

source

fn set_statistics_enabled(&mut self, enabled: EnabledStatistics)

Sets whether or not statistics are enabled for this column.

source

fn set_max_statistics_size(&mut self, value: usize)

Sets max size for statistics for this column.

source

fn set_bloom_filter_enabled(&mut self, value: bool)

If value is true, sets bloom filter properties to default values if not previously set, otherwise it is a no-op. If value is false, resets bloom filter properties to None.

source

fn set_bloom_filter_fpp(&mut self, value: f64)

Sets the false positive probability for bloom filter for this column, and implicitly enables bloom filter if not previously enabled.

§Panics

Panics if the value is not between 0 and 1 exclusive

source

fn set_bloom_filter_ndv(&mut self, value: u64)

Sets the number of distinct (unique) values for bloom filter for this column, and implicitly enables bloom filter if not previously enabled.

source

fn encoding(&self) -> Option<Encoding>

Returns optional encoding for this column.

source

fn compression(&self) -> Option<Compression>

Returns optional compression codec for this column.

source

fn dictionary_enabled(&self) -> Option<bool>

Returns Some(true) if dictionary encoding is enabled for this column, if disabled then returns Some(false). If result is None, then no setting has been provided.

source

fn statistics_enabled(&self) -> Option<EnabledStatistics>

Returns Some(true) if statistics are enabled for this column, if disabled then returns Some(false). If result is None, then no setting has been provided.

source

fn max_statistics_size(&self) -> Option<usize>

Returns optional max size in bytes for statistics.

source

fn bloom_filter_properties(&self) -> Option<&BloomFilterProperties>

Returns the bloom filter properties, or None if not enabled

Trait Implementations§

source§

impl Clone for ColumnProperties

source§

fn clone(&self) -> ColumnProperties

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 Debug for ColumnProperties

source§

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

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

impl Default for ColumnProperties

source§

fn default() -> ColumnProperties

Returns the “default value” for a type. Read more
source§

impl PartialEq for ColumnProperties

source§

fn eq(&self, other: &ColumnProperties) -> bool

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

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

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

impl StructuralPartialEq for ColumnProperties

Auto Trait Implementations§

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<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

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

source§

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, U> TryFrom<U> for T
where U: Into<T>,

source§

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>,

source§

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.
§

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