diff options
author | msvensson@shellback.(none) <> | 2007-09-22 12:17:14 +0200 |
---|---|---|
committer | msvensson@shellback.(none) <> | 2007-09-22 12:17:14 +0200 |
commit | d8fd59a42300122a3e4a04ae5db16e63d4b26df4 (patch) | |
tree | b333fbd8340f4db733f6ca5b2206bc599af02379 /mysql-test/t/archive.test | |
parent | b6708a9757e7e1f077ac88f0154ad29458d52815 (diff) | |
download | mariadb-git-d8fd59a42300122a3e4a04ae5db16e63d4b26df4.tar.gz |
Bug#30843 Bad Test addition to t/archive.test
Diffstat (limited to 'mysql-test/t/archive.test')
-rw-r--r-- | mysql-test/t/archive.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/t/archive.test b/mysql-test/t/archive.test index d1c45a259c6..2d29cab041d 100644 --- a/mysql-test/t/archive.test +++ b/mysql-test/t/archive.test @@ -1347,13 +1347,13 @@ 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',''); +INSERT DELAYED INTO t2 VALUES (99999,011403,37,'the','delayed','insert',''); # 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',''); +INSERT INTO t2 VALUES (100000,000001,00,'after','delayed','insert',''); # Wait for the delayed insert to appear while (`SELECT COUNT(auto)!=1215 FROM t2`) @@ -1365,7 +1365,7 @@ SELECT COUNT(auto) FROM t2; # Adding test for alter table ALTER TABLE t2 DROP COLUMN fld6; SHOW CREATE TABLE t2; -SELECT * from t2; +SELECT * from t2 WHERE auto != 100000; # # Cleanup, test is over # |