Reserve storage for deleted_log_event_ids.

This commit is contained in:
levlam 2023-02-01 22:01:26 +03:00
parent 3ead2030f6
commit b4658f3da3
1 changed files with 1 additions and 0 deletions

View File

@ -250,6 +250,7 @@ class TQueueImpl final : public TQueue {
auto collect_deleted_event_ids_time = 0.0;
if (callback_ != nullptr) {
vector<uint64> deleted_log_event_ids;
deleted_log_event_ids.reserve(size - keep_count);
for (auto it = q.events.begin(); it != end_it; ++it) {
auto &event = it->second;
if (event.log_event_id != 0) {