diff options
author | unknown <guilhem@gbichot4.local> | 2007-08-06 20:17:38 +0200 |
---|---|---|
committer | unknown <guilhem@gbichot4.local> | 2007-08-06 20:17:38 +0200 |
commit | 1b47e3dabddd64f56b804721a37bd5defc94d23f (patch) | |
tree | 20e9ae8a6fb610f20a15a435783c51ccea2f20de /mysql-test/t/alter_table.test | |
parent | ec547ae830f759aef707de5e783f075568440ec1 (diff) | |
download | mariadb-git-1b47e3dabddd64f56b804721a37bd5defc94d23f.tar.gz |
Make test does not fail if run with
--mysqld=--default-storage-engine=X where X does not support
INSERT DELAYED (like Maria)
mysql-test/r/alter_table.result:
result update
mysql-test/t/alter_table.test:
so that test does not fail if run with
--mysqld=--default-storage-engine=X where X does not support
INSERT DELAYED (like Maria)
Diffstat (limited to 'mysql-test/t/alter_table.test')
-rw-r--r-- | mysql-test/t/alter_table.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/alter_table.test b/mysql-test/t/alter_table.test index fa50d75b8d2..bfec0d08679 100644 --- a/mysql-test/t/alter_table.test +++ b/mysql-test/t/alter_table.test @@ -159,7 +159,7 @@ drop table t1; # Test of ALTER TABLE DELAYED # -CREATE TABLE t1 (i int(10), index(i) ); +CREATE TABLE t1 (i int(10), index(i) ) ENGINE=MyISAM; ALTER TABLE t1 DISABLE KEYS; INSERT DELAYED INTO t1 VALUES(1),(2),(3); ALTER TABLE t1 ENABLE KEYS; |