diff options
author | Nirbhay Choubey <nirbhay@mariadb.com> | 2017-01-18 11:44:47 -0500 |
---|---|---|
committer | Nirbhay Choubey <nirbhay@mariadb.com> | 2017-01-18 11:44:47 -0500 |
commit | a3a91332d006fd39a32e1f6d4663e11515ea944b (patch) | |
tree | 560c152c9f8146a4c1bcd52ad2a2fa454be48aec /mysql-test/r/str_to_datetime_457.result | |
parent | 2805baf06c31dac21604148ec089300461790e3d (diff) | |
download | mariadb-git-bb-10.2-mdev7635.saved.tar.gz |
MDEV-7635: Update tests to adapt to the new default sql_modebb-10.2-mdev7635.savedbb-10.2-mdev7635.final
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 |