mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-09 17:09:20 +00:00
PMM-1455 Tests added
This commit is contained in:
6
t/pt-online-schema-change/samples/pt-1455_master.sql
Normal file
6
t/pt-online-schema-change/samples/pt-1455_master.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
DROP DATABASE IF EXISTS employees;
|
||||
CREATE DATABASE employees;
|
||||
CREATE TABLE employees.t1 (
|
||||
id INT AUTO_INCREMENT PRIMARY KEY,
|
||||
f2 INT
|
||||
) ENGINE=InnoDB;
|
4
t/pt-online-schema-change/samples/pt-1455_slave.sql
Normal file
4
t/pt-online-schema-change/samples/pt-1455_slave.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
STOP SLAVE;
|
||||
CHANGE REPLICATION FILTER REPLICATE_WILD_IGNORE_TABLE = ('employees.%');
|
||||
RESET SLAVE;
|
||||
START SLAVE;
|
Reference in New Issue
Block a user