diff options
author | ram@gw.mysql.r18.ru <> | 2004-12-14 11:35:23 +0400 |
---|---|---|
committer | ram@gw.mysql.r18.ru <> | 2004-12-14 11:35:23 +0400 |
commit | d35c6c9c03d44694d251a23b46caae207207cdd8 (patch) | |
tree | 6c0c73694d45b277d6afb0c27438c0840e7bcef9 /mysql-test/t/delayed.test | |
parent | e06ac0e5ab9cc5eda80687c46320c85ed852251b (diff) | |
download | mariadb-git-d35c6c9c03d44694d251a23b46caae207207cdd8.tar.gz |
Portability fix (bug #7203: "delayed" test fails on QNX when using prepared statements)
Diffstat (limited to 'mysql-test/t/delayed.test')
-rw-r--r-- | mysql-test/t/delayed.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/delayed.test b/mysql-test/t/delayed.test index 4cf26b330c6..40bd7a912f3 100644 --- a/mysql-test/t/delayed.test +++ b/mysql-test/t/delayed.test @@ -14,7 +14,7 @@ insert delayed into t1 set a = 4; insert delayed into t1 set a = 5, tmsp = 19711006010203; insert delayed into t1 (a, tmsp) values (6, 19711006010203); insert delayed into t1 (a, tmsp) values (7, NULL); ---sleep 1 +--sleep 2 insert into t1 set a = 8,tmsp=19711006010203; select * from t1 where tmsp=0; select * from t1 where tmsp=19711006010203; |