Skip to content

Commit

Permalink
update BYTE_STREAM_SPLIT documentation (#6212)
Browse files Browse the repository at this point in the history
  • Loading branch information
etseidl authored Aug 8, 2024
1 parent 130ba61 commit 79ffdc4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions parquet/src/basic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,13 +294,14 @@ pub enum Encoding {
/// The ids are encoded using the RLE encoding.
RLE_DICTIONARY,

/// Encoding for floating-point data.
/// Encoding for fixed-width data.
///
/// K byte-streams are created where K is the size in bytes of the data type.
/// The individual bytes of an FP value are scattered to the corresponding stream and
/// The individual bytes of a value are scattered to the corresponding stream and
/// the streams are concatenated.
/// This itself does not reduce the size of the data but can lead to better compression
/// afterwards.
/// afterwards. Note that the use of this encoding with FIXED_LEN_BYTE_ARRAY(N) data may
/// perform poorly for large values of N.
BYTE_STREAM_SPLIT,
}

Expand Down

0 comments on commit 79ffdc4

Please sign in to comment.