diff options
author | unknown <paul@kite-hub.kitebird.com> | 2004-06-15 15:38:36 -0500 |
---|---|---|
committer | unknown <paul@kite-hub.kitebird.com> | 2004-06-15 15:38:36 -0500 |
commit | b1cecee05509b6f8637eb13b5ad9dbf9e46aaab2 (patch) | |
tree | a8d725d2e34802763b29ee7f113e09157f8a172c /mysql-test/r/warnings.result | |
parent | a35bd157733b419b042b7bb0d051840ce5383324 (diff) | |
download | mariadb-git-b1cecee05509b6f8637eb13b5ad9dbf9e46aaab2.tar.gz |
Language/consistency edits to error messages
and affected test results.
Diffstat (limited to 'mysql-test/r/warnings.result')
-rw-r--r-- | mysql-test/r/warnings.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/warnings.result b/mysql-test/r/warnings.result index 19d44ab6fea..bb41fc7ce02 100644 --- a/mysql-test/r/warnings.result +++ b/mysql-test/r/warnings.result @@ -48,7 +48,7 @@ Warning 1265 Data truncated for column 'd' at row 3 Warning 1265 Data truncated for column 'c' at row 4 Warning 1261 Row 5 doesn't contain data for all columns Warning 1265 Data truncated for column 'b' at row 6 -Warning 1262 Row 7 was truncated; It contained more data than there were input columns +Warning 1262 Row 7 was truncated; it contained more data than there were input columns Warning 1264 Data truncated, out of range for column 'a' at row 8 select @@warning_count; @@warning_count @@ -125,11 +125,11 @@ Warning 1266 Using storage engine MyISAM for table 't1' drop table t1; create table t1 (id int) type=heap; Warnings: -Warning 1287 'TYPE=storage_engine' is deprecated, use 'ENGINE=storage_engine' instead +Warning 1287 'TYPE=storage_engine' is deprecated; use 'ENGINE=storage_engine' instead alter table t1 type=myisam; Warnings: -Warning 1287 'TYPE=storage_engine' is deprecated, use 'ENGINE=storage_engine' instead +Warning 1287 'TYPE=storage_engine' is deprecated; use 'ENGINE=storage_engine' instead drop table t1; set table_type=MYISAM; Warnings: -Warning 1287 'table_type' is deprecated, use 'storage_engine' instead +Warning 1287 'table_type' is deprecated; use 'storage_engine' instead |