summaryrefslogtreecommitdiff
path: root/mysql-test/t/func_time.test
diff options
context:
space:
mode:
authorSergey Glukhov <sergey.glukhov@oracle.com>2011-03-30 11:08:35 +0400
committerSergey Glukhov <sergey.glukhov@oracle.com>2011-03-30 11:08:35 +0400
commitfbed52c1ba3041c8d24a0ca4c09950135f202f25 (patch)
tree7233c471ff3fceceecf0429afe7243e083304e13 /mysql-test/t/func_time.test
parent778a605af3f5f5044e1ef933086c84285ff6d57a (diff)
downloadmariadb-git-fbed52c1ba3041c8d24a0ca4c09950135f202f25.tar.gz
Bug#11766124 59164: VALGRIND: UNINITIALIZED VALUE IN NUMBER_TO_DATETIME
Valgrind warning happens due to missing NULL value check in Item::get_date. The fix is to add this check.
Diffstat (limited to 'mysql-test/t/func_time.test')
-rw-r--r--mysql-test/t/func_time.test6
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/t/func_time.test b/mysql-test/t/func_time.test
index 1bc56c0f403..938359f8c11 100644
--- a/mysql-test/t/func_time.test
+++ b/mysql-test/t/func_time.test
@@ -907,4 +907,10 @@ SELECT FORMAT(YEAR(STR_TO_DATE('',GET_FORMAT(TIME,''))),1);
SELECT CAST((MONTH(FROM_UNIXTIME(@@GLOBAL.SQL_MODE))) AS BINARY(1025));
+--echo #
+--echo # Bug#11766124 59164: VALGRIND: UNINITIALIZED VALUE IN NUMBER_TO_DATETIME
+--echo #
+
+SELECT ADDDATE(MONTH(FROM_UNIXTIME(NULL)),INTERVAL 1 HOUR);
+
--echo End of 5.1 tests