Skip to content

Commit fb47661

Browse files
committed
BUG#32212353: IMPROVE WRITE SET COLLECTION MEMORY USAGE HANDLING
Merge branch 'mysql-5.7' into mysql-8.0
2 parents 3e9e390 + fd68467 commit fb47661

File tree

3 files changed

+1
-69
lines changed

3 files changed

+1
-69
lines changed

mysql-test/suite/group_replication/r/gr_bad_alloc_during_write_set.result

-25
This file was deleted.

mysql-test/suite/group_replication/t/gr_bad_alloc_during_write_set.test

-43
This file was deleted.

sql/rpl_transaction_write_set_ctx.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Rpl_transaction_write_set_ctx::Rpl_transaction_write_set_ctx()
5151

5252
void Rpl_transaction_write_set_ctx::add_write_set(uint64 hash) {
5353
DBUG_TRACE;
54-
DBUG_EXECUTE_IF("add_write_set_crash_no_memory", throw std::bad_alloc(););
54+
DBUG_EXECUTE_IF("add_write_set_no_memory", throw std::bad_alloc(););
5555
write_set.push_back(hash);
5656
}
5757

0 commit comments

Comments
 (0)