This is an automated email from the ASF dual-hosted git repository.

william pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/orc-format.git


The following commit(s) were added to refs/heads/main by this push:
     new 9753755  ORC-FORMAT-6: Add `CompressionKind.BROTLI`
9753755 is described below

commit 975375569cfea32e9cecd46446dadbd10a99e0c0
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Fri Dec 8 15:18:16 2023 -0800

    ORC-FORMAT-6: Add `CompressionKind.BROTLI`
    
    ### What changes were proposed in this pull request?
    
    This closes #6 by adding `CompressionKind.BROTLI` as a new compression type.
    
    ### Why are the changes needed?
    
    To support ORC-1463 at Apache ORC Format 1.0.0.
    
    ### How was this patch tested?
    
    Pass the CIs.
---
 src/main/proto/orc/proto/orc_proto.proto | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/main/proto/orc/proto/orc_proto.proto 
b/src/main/proto/orc/proto/orc_proto.proto
index 5ca432d..16c5523 100644
--- a/src/main/proto/orc/proto/orc_proto.proto
+++ b/src/main/proto/orc/proto/orc_proto.proto
@@ -387,6 +387,7 @@ enum CompressionKind {
   LZO = 3;
   LZ4 = 4;
   ZSTD = 5;
+  BROTLI = 6;
 }
 
 // Serialized length must be less that 255 bytes

Reply via email to