mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-18 09:43:09 +00:00
Wait for --replicate table to repl on all slaves. Add wait_for arg to PerconaTest::full_output().
This commit is contained in:
15
t/pt-table-checksum/samples/dsn-table.sql
Normal file
15
t/pt-table-checksum/samples/dsn-table.sql
Normal file
@@ -0,0 +1,15 @@
|
||||
DROP DATABASE IF EXISTS dsns;
|
||||
CREATE DATABASE dsns;
|
||||
USE dsns;
|
||||
|
||||
CREATE TABLE dsns (
|
||||
id int auto_increment primary key,
|
||||
parent_id int default null,
|
||||
dsn varchar(255) not null
|
||||
);
|
||||
|
||||
INSERT INTO dsns VALUES
|
||||
-- (1, null, 'h=127.1,P=12345,u=msandbox,p=msandbox'), -- master
|
||||
(2, 1, 'h=127.1,P=12346,u=msandbox,p=msandbox'),
|
||||
(3, 2, 'h=127.1,P=12347,u=msandbox,p=msandbox');
|
||||
|
Reference in New Issue
Block a user