summaryrefslogtreecommitdiff
path: root/repl-tests/test-repl-alter/run.test
blob: 2e031010d5c74dff90acf7ea0c716a36c6bcc78a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;