We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17aa0d5 commit ecb6542Copy full SHA for ecb6542
sql/rpl_trx_tracking.h
@@ -27,7 +27,7 @@
27
#include <assert.h>
28
#include <sys/types.h>
29
#include <atomic>
30
-#include <unordered_map>
+#include <map>
31
32
#include "libbinlogevents/include/binlog_event.h"
33
@@ -163,7 +163,7 @@ class Writeset_trx_dependency_tracker {
163
Track the last transaction sequence number that changed each row
164
in the database, using row hashes from the writeset as the index.
165
*/
166
- typedef std::unordered_map<uint64, int64> Writeset_history;
+ typedef std::map<uint64, int64> Writeset_history;
167
std::shared_ptr<Writeset_history> m_writeset_history;
168
};
169
0 commit comments