Skip to content

Commit

Permalink
[fix](move-memtable) fix auto partition load issue caused by #42039 (#…
Browse files Browse the repository at this point in the history
…42484) (#42486)

backport #42484
  • Loading branch information
kaijchen authored Oct 25, 2024
1 parent 859332c commit 83b81c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/vec/sink/load_stream_map_pool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 83b81c1

Please sign in to comment.