diff options
author | Alexander Barkov <bar@mariadb.com> | 2019-04-02 11:40:22 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.com> | 2019-04-02 11:40:22 +0400 |
commit | ea5cda5269e08ca1560f18fbe24d8dfa980808b1 (patch) | |
tree | 97f414fb2c854718d64efca0f6bd3cc86e628f0c /mysql-test/main/func_time.result | |
parent | b9ea778f6cc5f1e5c77b330c7f801622f87f2a31 (diff) | |
download | mariadb-git-ea5cda5269e08ca1560f18fbe24d8dfa980808b1.tar.gz |
MDEV-18402 Assertion `sec.sec() <= 59' failed in Item_func_maketime::get_date
Diffstat (limited to 'mysql-test/main/func_time.result')
-rw-r--r-- | mysql-test/main/func_time.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/main/func_time.result b/mysql-test/main/func_time.result index e5e9610da8c..8546a7bc84b 100644 --- a/mysql-test/main/func_time.result +++ b/mysql-test/main/func_time.result @@ -6336,3 +6336,12 @@ Warnings: Warning 1292 Truncated incorrect DECIMAL value: 'foo' Warning 1292 Truncated incorrect DECIMAL value: 'foo' SET time_zone=DEFAULT; +# +# MDEV-18402 Assertion `sec.sec() <= 59' failed in Item_func_maketime::get_date +# +SELECT MAKETIME('01', '01', LEAST( -100, NULL )); +MAKETIME('01', '01', LEAST( -100, NULL )) +NULL +SELECT CONCAT(MAKETIME('01', '01', LEAST( -100, NULL ))); +CONCAT(MAKETIME('01', '01', LEAST( -100, NULL ))) +NULL |