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

morrysnow pushed a commit to branch branch-3.1
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-3.1 by this push:
     new b209e009d67 branch-3.1: [opt](outfile) change suffix of compressed 
file #55803 (#55908)
b209e009d67 is described below

commit b209e009d67eedd6fd1b686fc9f4a104b2a874f6
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Sep 12 10:40:44 2025 +0800

    branch-3.1: [opt](outfile) change suffix of compressed file #55803 (#55908)
    
    Cherry-picked from #55803
    
    Co-authored-by: Mingyu Chen (Rayner) <[email protected]>
---
 be/src/vec/sink/writer/vfile_result_writer.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/be/src/vec/sink/writer/vfile_result_writer.cpp 
b/be/src/vec/sink/writer/vfile_result_writer.cpp
index ad29714cc55..9275245acf6 100644
--- a/be/src/vec/sink/writer/vfile_result_writer.cpp
+++ b/be/src/vec/sink/writer/vfile_result_writer.cpp
@@ -208,9 +208,9 @@ std::string VFileResultWriter::_file_format_to_name() {
 std::string VFileResultWriter::_compression_type_to_name() {
     switch (_file_opts->compression_type) {
     case TFileCompressType::GZ:
-        return ".gzip";
+        return ".gz";
     case TFileCompressType::BZ2:
-        return ".bzip2";
+        return ".bz2";
     case TFileCompressType::SNAPPYBLOCK:
         return ".snappy";
     case TFileCompressType::LZ4BLOCK:


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to