Skip to content

Commit

Permalink
flush after drop
Browse files Browse the repository at this point in the history
  • Loading branch information
lnkuiper committed Sep 26, 2024
1 parent 45559f5 commit 9421a3f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/execution/operator/schema/physical_drop.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ SourceResultType PhysicalDrop::GetData(ExecutionContext &context, DataChunk &chu
}
}

if (Allocator::SupportsFlush()) {
Allocator::FlushAll();
}

return SourceResultType::FINISHED;
}

Expand Down

0 comments on commit 9421a3f

Please sign in to comment.