mariadb/repl-tests/test-repl-alter/run.test
unknown 60a4499bae added sleep to allow time for replication to the alter table test
repl-tests/test-repl-alter/run.test:
  added sleep to allow time for replication
2000-08-07 16:21:11 -06:00

12 lines
420 B
Text

source ../include/master-slave.inc;
connection master;
drop table if exists test;
CREATE TABLE test (name varchar(64), age smallint(3));
INSERT INTO test SET name='Andy', age=31;
INSERT test SET name='Jacob', age=2;
INSERT into test SET name='Caleb', age=1;
ALTER TABLE test ADD id int(8) ZEROFILL AUTO_INCREMENT PRIMARY KEY;
@test.master select * from test;
connection slave;
sleep 3;
@test.master select * from test;