summaryrefslogtreecommitdiff
path: root/mysql-test/t/archive.test
diff options
context:
space:
mode:
authorunknown <msvensson@neptunus.(none)>2006-12-11 17:03:01 +0100
committerunknown <msvensson@neptunus.(none)>2006-12-11 17:03:01 +0100
commitf978434faa04363c774fcc19c548fefa8636b6c7 (patch)
tree8dd2841b2695f4875a0e24a4fd1904a9bf016be3 /mysql-test/t/archive.test
parentfbb209d0de025fe76baef3dd7b3b3eaa7ab6ae9c (diff)
parent58558f0686973d643525b0efd40304179496b18e (diff)
downloadmariadb-git-f978434faa04363c774fcc19c548fefa8636b6c7.tar.gz
Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
into neptunus.(none):/home/msvensson/mysql/mysql-5.1-maint mysql-test/r/archive.result: Manual merge mysql-test/t/archive.test: Manual merge
Diffstat (limited to 'mysql-test/t/archive.test')
-rw-r--r--mysql-test/t/archive.test12
1 files changed, 7 insertions, 5 deletions
diff --git a/mysql-test/t/archive.test b/mysql-test/t/archive.test
index 497cd717ae2..a5a24064020 100644
--- a/mysql-test/t/archive.test
+++ b/mysql-test/t/archive.test
@@ -1346,12 +1346,14 @@ SELECT * FROM t2;
CHECK TABLE t2;
SELECT * FROM t2;
-
-# We won't know exactly about what is going on internally,
-# but we will see if the row makes it in!!
+# 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','');
-FLUSH TABLE t2;
-SELECT * FROM t2;
+while (`SELECT COUNT(auto)!=1214 FROM t2`)
+{
+ sleep 0.1;
+}
+SELECT COUNT(auto) FROM t2;
# Adding test for alter table
ALTER TABLE t2 DROP COLUMN fld6;