Skip to content

Commit ecb6542

Browse files
Revert "PS-9378: Backport PS-9302 (WRITESET perf improvements) to 8.0"
This reverts commit 40d7e5a.
1 parent 17aa0d5 commit ecb6542

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/rpl_trx_tracking.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#include <assert.h>
2828
#include <sys/types.h>
2929
#include <atomic>
30-
#include <unordered_map>
30+
#include <map>
3131

3232
#include "libbinlogevents/include/binlog_event.h"
3333

@@ -163,7 +163,7 @@ class Writeset_trx_dependency_tracker {
163163
Track the last transaction sequence number that changed each row
164164
in the database, using row hashes from the writeset as the index.
165165
*/
166-
typedef std::unordered_map<uint64, int64> Writeset_history;
166+
typedef std::map<uint64, int64> Writeset_history;
167167
std::shared_ptr<Writeset_history> m_writeset_history;
168168
};
169169

0 commit comments

Comments
 (0)