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/r/alter_table.result | |
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/r/alter_table.result')
-rw-r--r-- | mysql-test/r/alter_table.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/alter_table.result b/mysql-test/r/alter_table.result index cc93eab0cd5..e6c99cf0cf3 100644 --- a/mysql-test/r/alter_table.result +++ b/mysql-test/r/alter_table.result @@ -298,7 +298,7 @@ t1 0 a 1 a A 3 NULL NULL YES BTREE t1 0 a 2 b A 300 NULL NULL YES BTREE t1 1 b 1 b A 100 NULL NULL YES BTREE drop table t1; -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; |