mirror of
https://github.com/MariaDB/server.git
synced 2025-12-06 05:42:06 +03:00
We found that there are some tests that are not cleaning
up properly:
1. rpl_tmp_table_and_DDL
2. rpl_do_grant
3. rpl_sync
For #1 and #2 we found that the slave would not, for some
cases, replicate all the instructions the master processed
in the cleanup section. We fix these by deploying some
synchronization commands in the test cases so that slave
processes all clean up instructions.
As for #3, this is tracked as part of another bug
(BUG@50442).
15 lines
390 B
Plaintext
15 lines
390 B
Plaintext
#
|
|
# Bug#49132
|
|
# This test verifies if executing DDL statement before trying to manipulate
|
|
# a temporary table causes row-based replication to break with error 'table
|
|
# does not exist' base on myisam engine.
|
|
#
|
|
|
|
source include/master-slave.inc;
|
|
source include/have_binlog_format_row.inc;
|
|
|
|
LET $ENGINE_TYPE= MyISAM;
|
|
source extra/rpl_tests/rpl_tmp_table_and_DDL.test;
|
|
sync_slave_with_master;
|
|
|