diff options
author | unknown <serg@serg.mylan> | 2004-02-15 20:36:12 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-02-15 20:36:12 +0100 |
commit | d3545913028c1479a704c2a7523115eaa81860b4 (patch) | |
tree | 304adc3ec45054065c6b77d3b55083cadf7a0fd0 /mysql-test/r/warnings.result | |
parent | f7f02b484c9e2509a1a52dcddcce04bb12263419 (diff) | |
download | mariadb-git-d3545913028c1479a704c2a7523115eaa81860b4.tar.gz |
bug#2708
test results updated
myisam/ft_boolean_search.c:
cleanup
myisam/ft_parser.c:
cleanup
bug#2708
mysql-test/r/derived.result:
error messages updated
mysql-test/r/fulltext.result:
bug#2708
mysql-test/r/warnings.result:
error messages updated
mysql-test/t/fulltext.test:
bug#2708
Diffstat (limited to 'mysql-test/r/warnings.result')
-rw-r--r-- | mysql-test/r/warnings.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/warnings.result b/mysql-test/r/warnings.result index b675d189d30..a4620701d91 100644 --- a/mysql-test/r/warnings.result +++ b/mysql-test/r/warnings.result @@ -125,11 +125,11 @@ Warning 1265 Using storage engine MyISAM for table 't1' drop table t1; create table t1 (id int) type=heap; Warnings: -Warning 1286 'TYPE=storage_engine' is deprecated. Use 'ENGINE=storage_engine' instead. +Warning 1286 'TYPE=storage_engine' is deprecated, use 'ENGINE=storage_engine' instead alter table t1 type=myisam; Warnings: -Warning 1286 'TYPE=storage_engine' is deprecated. Use 'ENGINE=storage_engine' instead. +Warning 1286 'TYPE=storage_engine' is deprecated, use 'ENGINE=storage_engine' instead drop table t1; set table_type=MYISAM; Warnings: -Warning 1286 'table_type' is deprecated. Use 'storage_engine' instead. +Warning 1286 'table_type' is deprecated, use 'storage_engine' instead |