diff options
author | antony@ltantony.rdg.cyberkinetica.homeunix.net <> | 2003-12-10 04:31:42 +0000 |
---|---|---|
committer | antony@ltantony.rdg.cyberkinetica.homeunix.net <> | 2003-12-10 04:31:42 +0000 |
commit | fcf96dbb181a2afbab42ddd1e4a1f0fb2dd2061c (patch) | |
tree | 786b29c1b82119fc7dc8cadff03c8bd8607d3deb /mysql-test/r/help.result | |
parent | 28113396ecc3a4594a6f0075e403407d0e1eb6e7 (diff) | |
download | mariadb-git-fcf96dbb181a2afbab42ddd1e4a1f0fb2dd2061c.tar.gz |
WorkLog#1323
Deprecate the use of TYPE=... Preferred syntax is ENGINE=
Diffstat (limited to 'mysql-test/r/help.result')
-rw-r--r-- | mysql-test/r/help.result | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/mysql-test/r/help.result b/mysql-test/r/help.result index d22539b2bcb..edf7d0e91cb 100644 --- a/mysql-test/r/help.result +++ b/mysql-test/r/help.result @@ -132,10 +132,10 @@ help 'impossible_category_1'; source_category_name name is_it_category impossible_category_1 impossible_function_1 N impossible_category_1 impossible_function_2 N -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'; name is_it_category help '%possible_f%'; @@ -222,10 +222,10 @@ help 'impossible_category_1'; source_category_name name is_it_category impossible_category_1 impossible_function_1 N impossible_category_1 impossible_function_2 N -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; delete from mysql.help_topic where help_topic_id=@topic3_id; |