diff options
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/warnings.result | 4 | ||||
-rw-r--r-- | mysql-test/t/warnings-master.opt | 1 | ||||
-rw-r--r-- | mysql-test/t/warnings.test | 7 |
3 files changed, 4 insertions, 8 deletions
diff --git a/mysql-test/r/warnings.result b/mysql-test/r/warnings.result index d07f90d41b9..d03c5ed2f54 100644 --- a/mysql-test/r/warnings.result +++ b/mysql-test/r/warnings.result @@ -166,10 +166,10 @@ show variables like 'max_error_count'; Variable_name Value max_error_count 10 drop table t1; -create table t1 (id int) engine=merge; +create table t1 (id int) engine=NDB; Warnings: Warning 1266 Using storage engine MyISAM for table 't1' -alter table t1 engine=merge; +alter table t1 engine=NDB; Warnings: Warning 1266 Using storage engine MyISAM for table 't1' drop table t1; diff --git a/mysql-test/t/warnings-master.opt b/mysql-test/t/warnings-master.opt index e924a22e2ce..e69de29bb2d 100644 --- a/mysql-test/t/warnings-master.opt +++ b/mysql-test/t/warnings-master.opt @@ -1 +0,0 @@ ---skip-isam --skip-merge diff --git a/mysql-test/t/warnings.test b/mysql-test/t/warnings.test index a8b8e5f5103..eb5a24a8604 100644 --- a/mysql-test/t/warnings.test +++ b/mysql-test/t/warnings.test @@ -113,11 +113,8 @@ show variables like 'max_error_count'; # Test for handler type # drop table t1; -#create table t1 (id int) engine=isam; -#alter table t1 engine=isam; -#drop table t1; -create table t1 (id int) engine=merge; -alter table t1 engine=merge; +create table t1 (id int) engine=NDB; +alter table t1 engine=NDB; drop table t1; # |