Wait for --replicate table to repl on all slaves. Add wait_for arg to PerconaTest::full_output().

This commit is contained in:
Daniel Nichter
2012-06-05 12:29:26 -04:00
parent 95f7e53feb
commit 4f83cf4102
4 changed files with 104 additions and 5 deletions

View 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');