This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new 7503d4de96c branch-3.0: [Fix](compaction) Fix full compaction error when compaction size is too large #48958 (#49437) 7503d4de96c is described below commit 7503d4de96cf7b630b2e9a568b2a9cfa0ac84a25 Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Wed Mar 26 10:45:09 2025 +0800 branch-3.0: [Fix](compaction) Fix full compaction error when compaction size is too large #48958 (#49437) 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 81cfc756d63..d569b8c5c86 100644 --- a/be/src/vec/olap/vertical_merge_iterator.cpp +++ b/be/src/vec/olap/vertical_merge_iterator.cpp @@ -181,6 +181,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