[][src]Enum parquet_format::ConvertedType

pub enum ConvertedType {
    Utf8,
    Map,
    MapKeyValue,
    List,
    Enum,
    Decimal,
    Date,
    TimeMillis,
    TimeMicros,
    TimestampMillis,
    TimestampMicros,
    Uint8,
    Uint16,
    Uint32,
    Uint64,
    Int8,
    Int16,
    Int32,
    Int64,
    Json,
    Bson,
    Interval,
}

Common types used by frameworks(e.g. hive, pig) using parquet. This helps map between types in those frameworks to the base types in parquet. This is only metadata and not needed to read or write the data.

Variants

Utf8

a BYTE_ARRAY actually contains UTF8 encoded chars

Map

a map is converted as an optional field containing a repeated key/value pair

MapKeyValue

a key/value pair is converted into a group of two fields

List

a list is converted into an optional field containing a repeated field for its values

Enum

an enum is converted into a binary field

Decimal

A decimal value.

This may be used to annotate binary or fixed primitive types. The underlying byte array stores the unscaled value encoded as two's complement using big-endian byte order (the most significant byte is the zeroth element). The value of the decimal is the value * 10^{-scale}.

This must be accompanied by a (maximum) precision and a scale in the SchemaElement. The precision specifies the number of digits in the decimal and the scale stores the location of the decimal point. For example 1.23 would have precision 3 (3 total digits) and scale 2 (the decimal point is 2 digits over).

Date

A Date

Stored as days since Unix epoch, encoded as the INT32 physical type.

TimeMillis

A time

The total number of milliseconds since midnight. The value is stored as an INT32 physical type.

TimeMicros

A time.

The total number of microseconds since midnight. The value is stored as an INT64 physical type.

TimestampMillis

A date/time combination

Date and time recorded as milliseconds since the Unix epoch. Recorded as a physical type of INT64.

TimestampMicros

A date/time combination

Date and time recorded as microseconds since the Unix epoch. The value is stored as an INT64 physical type.

Uint8

An unsigned integer value.

The number describes the maximum number of meaningful data bits in the stored value. 8, 16 and 32 bit values are stored using the INT32 physical type. 64 bit values are stored using the INT64 physical type.

Uint16
Uint32
Uint64
Int8

A signed integer value.

The number describes the maximum number of meaningful data bits in the stored value. 8, 16 and 32 bit values are stored using the INT32 physical type. 64 bit values are stored using the INT64 physical type.

Int16
Int32
Int64
Json

An embedded JSON document

A JSON document embedded within a single UTF8 column.

Bson

An embedded BSON document

A BSON document embedded within a single BINARY column.

Interval

An interval of time

This type annotates data stored as a FIXED_LEN_BYTE_ARRAY of length 12 This data is composed of three separate little endian unsigned integers. Each stores a component of a duration of time. The first integer identifies the number of months associated with the duration, the second identifies the number of days associated with the duration and the third identifies the number of milliseconds associated with the provided duration. This duration of time is independent of any particular timezone or date.

Implementations

impl ConvertedType[src]

pub fn write_to_out_protocol(
    &self,
    o_prot: &mut dyn TOutputProtocol
) -> Result<()>
[src]

pub fn read_from_in_protocol(
    i_prot: &mut dyn TInputProtocol
) -> Result<ConvertedType>
[src]

Trait Implementations

impl Clone for ConvertedType[src]

impl Copy for ConvertedType[src]

impl Debug for ConvertedType[src]

impl Eq for ConvertedType[src]

impl Hash for ConvertedType[src]

impl Ord for ConvertedType[src]

impl PartialEq<ConvertedType> for ConvertedType[src]

impl PartialOrd<ConvertedType> for ConvertedType[src]

impl StructuralEq for ConvertedType[src]

impl StructuralPartialEq for ConvertedType[src]

impl TryFrom<i32> for ConvertedType[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.