diff options
Diffstat (limited to 'mysql-test/r/str_to_datetime_457.result')
-rw-r--r-- | mysql-test/r/str_to_datetime_457.result | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/mysql-test/r/str_to_datetime_457.result b/mysql-test/r/str_to_datetime_457.result index 4fd0d00691c..b3479dfef6a 100644 --- a/mysql-test/r/str_to_datetime_457.result +++ b/mysql-test/r/str_to_datetime_457.result @@ -12,9 +12,11 @@ Warning 1292 Truncated incorrect datetime value: '2012103123595912' Warning 1292 Truncated incorrect datetime value: '20121031235959123' select cast(0 as date), cast('0000-00-00' as date), cast('0' as date); cast(0 as date) cast('0000-00-00' as date) cast('0' as date) -0000-00-00 0000-00-00 NULL +NULL NULL NULL Warnings: Warning 1292 Incorrect datetime value: '0' +Warning 1292 Incorrect datetime value: '0000-00-00' +Warning 1292 Incorrect datetime value: '0' select extract(hour from '100000:02:03'), extract(hour from '100000:02:03 '); extract(hour from '100000:02:03') extract(hour from '100000:02:03 ') NULL NULL @@ -39,13 +41,19 @@ Warnings: Warning 1292 Truncated incorrect time value: '12:00:00-12.34.56' select cast('12:00:00.12.34.56' as datetime); cast('12:00:00.12.34.56' as datetime) -2012-00-00 12:34:56 +NULL +Warnings: +Warning 1292 Incorrect datetime value: '12:00:00.12.34.56' select cast('12:00:00-12.34.56' as datetime); cast('12:00:00-12.34.56' as datetime) -2012-00-00 12:34:56 +NULL +Warnings: +Warning 1292 Incorrect datetime value: '12:00:00-12.34.56' select cast('12:00:00 12.34.56' as datetime); cast('12:00:00 12.34.56' as datetime) -2012-00-00 12:34:56 +NULL +Warnings: +Warning 1292 Incorrect datetime value: '12:00:00 12.34.56' select cast('12:00:00.123456' as time); cast('12:00:00.123456' as time) 12:00:00 |