This is an automated email from the ASF dual-hosted git repository. liaoxin 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 fe0da72555f [fix](move-memtable) fix auto partition load issue caused by #42039 (#42484) (#42487) fe0da72555f is described below commit fe0da72555f055127082b96df00ab3aeb56dd766 Author: Kaijie Chen <c...@apache.org> AuthorDate: Sat Oct 26 11:31:41 2024 +0800 [fix](move-memtable) fix auto partition load issue caused by #42039 (#42484) (#42487) backport #42484 --- be/src/vec/sink/load_stream_map_pool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/vec/sink/load_stream_map_pool.cpp b/be/src/vec/sink/load_stream_map_pool.cpp index d6dddcc96dc..dc78d306e70 100644 --- a/be/src/vec/sink/load_stream_map_pool.cpp +++ b/be/src/vec/sink/load_stream_map_pool.cpp @@ -107,7 +107,7 @@ bool LoadStreamMap::release() { void LoadStreamMap::close_load(bool incremental) { for (auto& [dst_id, streams] : _streams_for_node) { - if (streams->is_incremental()) { + if (streams->is_incremental() != incremental) { continue; } std::vector<PTabletID> tablets_to_commit; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org