mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
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)
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user