diff options
author | monty@donna.mysql.fi <> | 2001-03-09 03:38:18 +0200 |
---|---|---|
committer | monty@donna.mysql.fi <> | 2001-03-09 03:38:18 +0200 |
commit | 267c8760cb33208e2c1d772340c2aaf234806c45 (patch) | |
tree | 816c1657d4d15fbff641ddc882052d6536790ed5 /mysql-test | |
parent | 210440590455a100833c66b7d943756bddd3333e (diff) | |
download | mariadb-git-267c8760cb33208e2c1d772340c2aaf234806c45.tar.gz |
Fixed wrong option in mysql_install_db
Added delayed_user for delayed_threads
Don't use record cache when doing deletes
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/t/delayed.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/delayed.test b/mysql-test/t/delayed.test index 4bc1afa7612..6fbd99e3283 100644 --- a/mysql-test/t/delayed.test +++ b/mysql-test/t/delayed.test @@ -11,6 +11,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 insert into t1 set a = 8,tmsp=19711006010203; select * from t1 where tmsp=0; select * from t1 where tmsp=19711006010203; @@ -27,5 +28,6 @@ insert delayed into t1 values (null,"c"); insert delayed into t1 values (3,"d"),(null,"e"); --error 1136 insert delayed into t1 values (3,"this will give an","error"); +--sleep 2 select * from t1; drop table t1; |