diff options
author | serg@serg.mylan <> | 2004-02-15 20:36:12 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-02-15 20:36:12 +0100 |
commit | 15249d6a72a101c44861b5654a081d14688cdc3e (patch) | |
tree | 304adc3ec45054065c6b77d3b55083cadf7a0fd0 /mysql-test/r/warnings.result | |
parent | 03ffb63f0803d19746dd72356c74c96a46f83aba (diff) | |
download | mariadb-git-15249d6a72a101c44861b5654a081d14688cdc3e.tar.gz |
bug#2708
test results updated
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 |