This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 80ee746a5b4 [Fix](compaction) Fix full compaction error when compaction size is too large (#48958) 80ee746a5b4 is described below commit 80ee746a5b47c15cc6000bd21dc63e499f120bb0 Author: abmdocrt <lianyuk...@selectdb.com> AuthorDate: Tue Mar 25 10:12:01 2025 +0800 [Fix](compaction) Fix full compaction error when compaction size is too large (#48958) --- 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