Enum parquet::basic::ColumnOrder[][src]

pub enum ColumnOrder {
    TYPE_DEFINED_ORDER(SortOrder),
    UNDEFINED,
}

Column order that specifies what method was used to aggregate min/max values for statistics.

If column order is undefined, then it is the legacy behaviour and all values should be compared as signed values/bytes.

Variants

Column uses the order defined by its logical or physical type (if there is no logical type), parquet-format 2.4.0+.

Undefined column order, means legacy behaviour before parquet-format 2.4.0. Sort order is always SIGNED.

Methods

impl ColumnOrder
[src]

Returns sort order for a physical/logical type.

Returns sort order associated with this column order.

Trait Implementations

impl Debug for ColumnOrder
[src]

Formats the value using the given formatter. Read more

impl Clone for ColumnOrder
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ColumnOrder
[src]

impl PartialEq for ColumnOrder
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Display for ColumnOrder
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ColumnOrder

impl Sync for ColumnOrder