diff options
author | unknown <sasha@mysql.sashanet.com> | 2000-08-07 16:21:11 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2000-08-07 16:21:11 -0600 |
commit | 60a4499bae599ddc1c9c92ad4a1294f7b85ae465 (patch) | |
tree | bfbe36415c7076067ab0969a7ee75dd7ff343ae6 /repl-tests | |
parent | 1d598de95500eafa40ab696abb9e9487ac97fee2 (diff) | |
download | mariadb-git-60a4499bae599ddc1c9c92ad4a1294f7b85ae465.tar.gz |
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
Diffstat (limited to 'repl-tests')
-rw-r--r-- | repl-tests/test-repl-alter/run.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/repl-tests/test-repl-alter/run.test b/repl-tests/test-repl-alter/run.test index dab79a3d8f3..2e031010d5c 100644 --- a/repl-tests/test-repl-alter/run.test +++ b/repl-tests/test-repl-alter/run.test @@ -8,4 +8,5 @@ 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; -@test.master select * from test;
\ No newline at end of file +sleep 3; +@test.master select * from test; |