Change storage engine to myisam so MySQL 5.5 will work

This commit is contained in:
Baron Schwartz
2012-06-04 00:28:21 -04:00
parent 40017ec5bd
commit 8916958897

View File

@@ -1,6 +1,6 @@
use test;
drop table if exists stat_test;
create table stat_test(a int);
create table stat_test(a int)engine=myisam; -- required b/c test plugin does not commit txn
DROP TABLE IF EXISTS `table_5`;
DROP TABLE IF EXISTS `table_5_dest`;
DROP TABLE IF EXISTS `table_5_copy`;