diff options
author | sasha@mysql.sashanet.com <> | 2000-12-07 07:54:59 -0700 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2000-12-07 07:54:59 -0700 |
commit | ec1359416be7cec52f94dc4f7d6fabb2d406d416 (patch) | |
tree | ef39d8dcdf72e86ba28a8083870495ea8e17395c /mysql-test/t/rpl000005.test | |
parent | a5c75df390e9b67454bd0a04e75583057e9579f7 (diff) | |
download | mariadb-git-ec1359416be7cec52f94dc4f7d6fabb2d406d416.tar.gz |
fixed up mysql-test - will not push this yet, as more clean up/testing is to follow
Diffstat (limited to 'mysql-test/t/rpl000005.test')
-rw-r--r-- | mysql-test/t/rpl000005.test | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/t/rpl000005.test b/mysql-test/t/rpl000005.test new file mode 100644 index 00000000000..944f701d765 --- /dev/null +++ b/mysql-test/t/rpl000005.test @@ -0,0 +1,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; +@r/rpl000005.result select * from test; +connection slave; +sleep 0.5; +@r/rpl000005.result select * from test; |