diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2003-12-13 17:20:35 +0200 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2003-12-13 17:20:35 +0200 |
commit | 85a4e83e9ae38b19f1e3eda9162203ac45b32ee5 (patch) | |
tree | a8e36d0cbbc258765abf20de6ce0f9b1bdf5e6df /mysql-test/r/func_set.result | |
parent | 18ebd6344003dda25b70fc3921e34867179d3c15 (diff) | |
download | mariadb-git-85a4e83e9ae38b19f1e3eda9162203ac45b32ee5.tar.gz |
Already approved bug fix for #1561.
Bug happens in INTERVAL function when number of compared arguments
is 8 or more.
Diffstat (limited to 'mysql-test/r/func_set.result')
-rw-r--r-- | mysql-test/r/func_set.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/func_set.result b/mysql-test/r/func_set.result index 2a3631140b0..d51bc24112a 100644 --- a/mysql-test/r/func_set.result +++ b/mysql-test/r/func_set.result @@ -50,3 +50,9 @@ id elt(two.val,'one','two') 2 one 4 two drop table t1,t2; +SELECT INTERVAL(13, 7, 14, 21, 28, 35, 42, 49, 56); +INTERVAL(13, 7, 14, 21, 28, 35, 42, 49, 56) +1 +SELECT INTERVAL(13, 7, 14, 21, 28, 35, 42, 49, 56, 77); +INTERVAL(13, 7, 14, 21, 28, 35, 42, 49, 56, 77) +1 |