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

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


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new 05ffc625940 branch-2.1: [Fix](compaction) Fix full compaction error 
when compaction size is too large #48958 (#49493)
05ffc625940 is described below

commit 05ffc6259401f5536fc328786813801d60840702
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sat Mar 29 09:01:36 2025 +0800

    branch-2.1: [Fix](compaction) Fix full compaction error when compaction 
size is too large #48958 (#49493)
    
    Cherry-picked from #48958
    
    Co-authored-by: abmdocrt <lianyuk...@selectdb.com>
---
 be/src/vec/olap/vertical_merge_iterator.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/be/src/vec/olap/vertical_merge_iterator.cpp 
b/be/src/vec/olap/vertical_merge_iterator.cpp
index 95bf9d41c79..fada37fa669 100644
--- a/be/src/vec/olap/vertical_merge_iterator.cpp
+++ b/be/src/vec/olap/vertical_merge_iterator.cpp
@@ -168,6 +168,8 @@ Status RowSourcesBuffer::_create_buffer_file() {
     } else if (_reader_type == ReaderType::READER_CUMULATIVE_COMPACTION ||
                _reader_type == ReaderType::READER_SEGMENT_COMPACTION) {
         file_path_ss << "_cumu";
+    } else if (_reader_type == ReaderType::READER_FULL_COMPACTION) {
+        file_path_ss << "_full";
     } else if (_reader_type == ReaderType::READER_COLD_DATA_COMPACTION) {
         file_path_ss << "_cold";
     } else {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to