diff options
author | unknown <msvensson@shellback.(none)> | 2007-09-21 09:48:30 +0200 |
---|---|---|
committer | unknown <msvensson@shellback.(none)> | 2007-09-21 09:48:30 +0200 |
commit | 8a42112692cb08e55465090311e4b51c7decf283 (patch) | |
tree | 6637d760ae14b7d8dc4e8cae8770e9a27b8c3349 /mysql-test/t/archive.test | |
parent | 05dd9e4987bd2ad93a40f14ace4351291308bd5a (diff) | |
download | mariadb-git-8a42112692cb08e55465090311e4b51c7decf283.tar.gz |
Bug#30843 Bad Test addition to t/archive.test
- Add extra insert
mysql-test/r/archive.result:
Add an extra insert to guarantee that the delayed
insert shows up in the table
mysql-test/t/archive.test:
Add an extra insert to guarantee that the delayed
insert shows up in the table
Diffstat (limited to 'mysql-test/t/archive.test')
-rw-r--r-- | mysql-test/t/archive.test | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mysql-test/t/archive.test b/mysql-test/t/archive.test index 61033fca3f7..d1c45a259c6 100644 --- a/mysql-test/t/archive.test +++ b/mysql-test/t/archive.test @@ -1348,7 +1348,15 @@ SELECT * FROM t2; # Test INSERT DELAYED and wait until the table has one more record SELECT COUNT(auto) FROM t2; INSERT DELAYED INTO t2 VALUES (4,011403,37,'intercepted','audiology','tinily',''); -while (`SELECT COUNT(auto)!=1214 FROM t2`) + +# Insert another record since in Archive delayed values are only +# guaranteed to materialize based on either: +# 1) A new row showing up from a normal insert +# 2) A flush table has occurred. +INSERT INTO t2 VALUES (5,000001,00,'after','delayed','insert',''); + +# Wait for the delayed insert to appear +while (`SELECT COUNT(auto)!=1215 FROM t2`) { sleep 0.1; } |