1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

don't even try to run xtradb-only tests with innodb, use have_xtradb.combinations.

This commit is contained in:
Sergei Golubchik
2012-02-23 09:18:48 +01:00
parent a19a4618e3
commit 3cda92aece
14 changed files with 34 additions and 138 deletions

View File

@ -1,3 +1,4 @@
set @default_storage_engine= @@global.storage_engine;
set global storage_engine=myisam;
set session storage_engine=myisam;
drop table if exists crashed,t2,t3,t4;
@ -22,3 +23,4 @@ INSERT INTO t3 VALUES (31);
UNLOCK TABLES;
DROP TRIGGER t1_ai;
DROP TABLE t4,crashed,t2,t3;
set global storage_engine=@default_storage_engine;