Struct parquet::encoding::DictEncoder[][src]

pub struct DictEncoder<T: DataType> { /* fields omitted */ }
Expand description

Dictionary encoder. The dictionary encoding builds a dictionary of values encountered in a given column. The dictionary page is written first, before the data pages of the column chunk.

Dictionary page format: the entries in the dictionary - in dictionary order - using the plain encoding.

Data page format: the bit width used to encode the entry ids stored as 1 byte (max bit width = 32), followed by the values encoded using RLE/Bit packed described above (with the given bit width).

Implementations

Creates new dictionary encoder.

Returns true if dictionary entries are sorted, false otherwise.

Returns number of unique values (keys) in the dictionary.

Returns size of unique values (keys) in the dictionary, in bytes.

Writes out the dictionary values with PLAIN encoding in a byte buffer, and return the result.

Writes out the dictionary values with RLE encoding in a byte buffer, and return the result.

Trait Implementations

Encodes data from values.

Returns the encoding type of this encoder.

Returns an estimate of the encoded data, in bytes. Method call must be O(1). Read more

Flushes the underlying byte buffer that’s being processed by this encoder, and return the immutable copy of it. This will also reset the internal state. Read more

Encodes data from values, which contains spaces for null values, that is identified by valid_bits. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.