Files
percona-toolkit/t/pt-online-schema-change/samples/pt-1455_replica.sql
Sveta Smirnova 76c1202cb5 PT-2340 - Support MySQL 8.4
- Updated modules and tests for pt-online-schema-change
- Removed typo from lib/MasterSlave.pm
2024-07-30 18:20:50 +03:00

7 lines
265 B
SQL

STOP REPLICA;
CHANGE REPLICATION FILTER REPLICATE_IGNORE_DB = (`ignored_db`);
CHANGE REPLICATION FILTER REPLICATE_IGNORE_TABLE = (`idb1`.`it1`, `idb1`.`it2`);
CHANGE REPLICATION FILTER REPLICATE_WILD_IGNORE_TABLE = ('employees.eit%');
RESET REPLICA;
START REPLICA;