diff options
author | unknown <ramil@mysql.com> | 2005-06-06 10:39:21 +0500 |
---|---|---|
committer | unknown <ramil@mysql.com> | 2005-06-06 10:39:21 +0500 |
commit | d1e9ff363d4d5a79f6fbd5c19087ee5dfb27d4a9 (patch) | |
tree | 57ed814008a590dd6dff13f0138deb29e996609d /mysql-test/r/func_time.result | |
parent | 5888d0396ebeb958d4168df2481345242baa674e (diff) | |
parent | 44af4dbdf12f32ee5cb2be6d747c02b32912bf06 (diff) | |
download | mariadb-git-d1e9ff363d4d5a79f6fbd5c19087ee5dfb27d4a9.tar.gz |
Merge
sql/item_timefunc.cc:
Auto merged
mysql-test/r/func_time.result:
SCCS merged
mysql-test/t/func_time.test:
SCCS merged
Diffstat (limited to 'mysql-test/r/func_time.result')
-rw-r--r-- | mysql-test/r/func_time.result | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/r/func_time.result b/mysql-test/r/func_time.result index 239fca65b67..cb51da75368 100644 --- a/mysql-test/r/func_time.result +++ b/mysql-test/r/func_time.result @@ -688,6 +688,21 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE NULL NULL NULL NULL NULL NULL NULL No tables used Warnings: Note 1003 select timestamp_diff(WEEK,_latin1'2001-02-01',_latin1'2001-05-01') AS `a1`,timestamp_diff(SECOND_FRAC,_latin1'2001-02-01 12:59:59.120000',_latin1'2001-05-01 12:58:58.119999') AS `a2` +select last_day('2005-00-00'); +last_day('2005-00-00') +NULL +Warnings: +Warning 1292 Truncated incorrect datetime value: '2005-00-00' +select last_day('2005-00-01'); +last_day('2005-00-01') +NULL +Warnings: +Warning 1292 Truncated incorrect datetime value: '2005-00-01' +select last_day('2005-01-00'); +last_day('2005-01-00') +NULL +Warnings: +Warning 1292 Truncated incorrect datetime value: '2005-01-00' select time_format('100:00:00', '%H %k %h %I %l'); time_format('100:00:00', '%H %k %h %I %l') 100 100 04 04 4 |