diff options
author | sasha@mysql.sashanet.com <> | 2000-08-07 16:21:11 -0600 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2000-08-07 16:21:11 -0600 |
commit | 3b17e897d53d2e2a244ea9f46c7999a55ad8a29e (patch) | |
tree | bfbe36415c7076067ab0969a7ee75dd7ff343ae6 /repl-tests | |
parent | 37316bea5a83ccb7477ccd41b459a1c89305d180 (diff) | |
download | mariadb-git-3b17e897d53d2e2a244ea9f46c7999a55ad8a29e.tar.gz |
added sleep to allow time for replication to the alter table test
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; |