Jimexist commented on a change in pull request #979:
URL: https://github.com/apache/arrow-rs/pull/979#discussion_r758346476



##########
File path: parquet/src/basic.rs
##########
@@ -250,6 +250,15 @@ pub enum Encoding {
     ///
     /// The ids are encoded using the RLE encoding.
     RLE_DICTIONARY,
+
+    /// Encoding for floating-point 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 streams are concatenated.
+    /// This itself does not reduce the size of the data but can lead to 
better compression
+    /// afterwards.
+    BYTE_STREAM_SPLIT

Review comment:
       ```suggestion
       BYTE_STREAM_SPLIT,
   ```




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to