diff options
author | gluh@eagle.intranet.mysql.r18.ru <> | 2005-12-02 15:01:44 +0400 |
---|---|---|
committer | gluh@eagle.intranet.mysql.r18.ru <> | 2005-12-02 15:01:44 +0400 |
commit | e9d70e4b97cd0232c1575516f395f6c7b7f100da (patch) | |
tree | 65e24243474e43801b96670b9012967868c3a50a /mysql-test/r/loaddata.result | |
parent | 36c45752e30fdb91659d6efd563e8f449a176ad1 (diff) | |
download | mariadb-git-e9d70e4b97cd0232c1575516f395f6c7b7f100da.tar.gz |
Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE
-issue more correct message for incorrect date|datetime|time values
-ER_WARN_DATA_OUT_OF_RANGE message is changed
-added new error message
Diffstat (limited to 'mysql-test/r/loaddata.result')
-rw-r--r-- | mysql-test/r/loaddata.result | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mysql-test/r/loaddata.result b/mysql-test/r/loaddata.result index 4e47ce6f82c..a52952ffdb5 100644 --- a/mysql-test/r/loaddata.result +++ b/mysql-test/r/loaddata.result @@ -43,9 +43,9 @@ drop table t1; create table t1 (a int, b char(10)); load data infile '../../std_data/loaddata3.dat' into table t1 fields terminated by '' enclosed by '' ignore 1 lines; Warnings: -Warning 1264 Out of range value adjusted for column 'a' at row 3 +Warning 1264 Out of range value for column 'a' at row 3 Warning 1262 Row 3 was truncated; it contained more data than there were input columns -Warning 1264 Out of range value adjusted for column 'a' at row 5 +Warning 1264 Out of range value for column 'a' at row 5 Warning 1262 Row 5 was truncated; it contained more data than there were input columns select * from t1; a b @@ -57,7 +57,7 @@ a b truncate table t1; load data infile '../../std_data/loaddata4.dat' into table t1 fields terminated by '' enclosed by '' lines terminated by '' ignore 1 lines; Warnings: -Warning 1264 Out of range value adjusted for column 'a' at row 4 +Warning 1264 Out of range value for column 'a' at row 4 Warning 1261 Row 4 doesn't contain data for all columns select * from t1; a b |