diff options
Diffstat (limited to 'mysql-test/t/help.test')
-rw-r--r-- | mysql-test/t/help.test | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mysql-test/t/help.test b/mysql-test/t/help.test index 82312340336..54c551ccd7a 100644 --- a/mysql-test/t/help.test +++ b/mysql-test/t/help.test @@ -65,10 +65,10 @@ help 'impossible_function_1'; help 'impossible_category_1'; ############## -alter table mysql.help_relation type=innodb; -alter table mysql.help_keyword type=innodb; -alter table mysql.help_topic type=innodb; -alter table mysql.help_category type=innodb; +alter table mysql.help_relation engine=innodb; +alter table mysql.help_keyword engine=innodb; +alter table mysql.help_topic engine=innodb; +alter table mysql.help_category engine=innodb; ############## help 'function_of_my_dream'; @@ -90,10 +90,10 @@ help 'impossible_function_1'; help 'impossible_category_1'; ############## -alter table mysql.help_relation type=myisam; -alter table mysql.help_keyword type=myisam; -alter table mysql.help_topic type=myisam; -alter table mysql.help_category type=myisam; +alter table mysql.help_relation engine=myisam; +alter table mysql.help_keyword engine=myisam; +alter table mysql.help_topic engine=myisam; +alter table mysql.help_category engine=myisam; delete from mysql.help_topic where help_topic_id=@topic1_id; delete from mysql.help_topic where help_topic_id=@topic2_id; |