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 6f02bc9fff7 branch-3.0: [fix](move-memtable) fix segment number
mismatch for erroneously skipped segments #55092 (#55470)
6f02bc9fff7 is described below
commit 6f02bc9fff766d2df69b9f126cd4da8f5a3e6c57
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Sep 5 09:43:51 2025 +0800
branch-3.0: [fix](move-memtable) fix segment number mismatch for
erroneously skipped segments #55092 (#55470)
Cherry-picked from #55092
Co-authored-by: hui lai <[email protected]>
---
be/src/vec/sink/writer/vtablet_writer_v2.cpp | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/be/src/vec/sink/writer/vtablet_writer_v2.cpp
b/be/src/vec/sink/writer/vtablet_writer_v2.cpp
index c9e63349270..c534fb44334 100644
--- a/be/src/vec/sink/writer/vtablet_writer_v2.cpp
+++ b/be/src/vec/sink/writer/vtablet_writer_v2.cpp
@@ -99,9 +99,7 @@ Status VTabletWriterV2::_incremental_open_streams(
tablet.set_partition_id(partition->id);
tablet.set_index_id(index.index_id);
tablet.set_tablet_id(tablet_id);
- if (!_load_stream_map->contains(node)) {
- new_backends.insert(node);
- }
+ new_backends.insert(node);
_tablets_for_node[node].emplace(tablet_id, tablet);
if (known_indexes.contains(index.index_id)) [[likely]] {
continue;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]