devanbenz commented on code in PR #10153:
URL: https://github.com/apache/arrow-rs/pull/10153#discussion_r3425014681
##########
parquet/src/basic.rs:
##########
@@ -449,6 +449,12 @@ enum Encoding {
/// 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 = 9;
+ /// Compressed string encoding using a Fast Static Symbol Table (FSST).
+ ///
+ /// Frequently occurring substrings (up to 8 bytes) are replaced with
+ /// single-byte codes drawn from a per-page symbol table, enabling random
+ /// access to individual compressed values. Applies to BYTE_ARRAY data.
+ FSST = 10;
Review Comment:
This will probably need to be `FSST = 11` once ALP lands.
--
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]