diff options
author | ramil@mysql.com <> | 2006-06-19 13:03:29 +0500 |
---|---|---|
committer | ramil@mysql.com <> | 2006-06-19 13:03:29 +0500 |
commit | 49797c23b3750b0aa86bb3400a353e652bc1cd1c (patch) | |
tree | 140c8f417704ab4324d7e00a69cb81c99402427b /mysql-test/t/func_time.test | |
parent | c02e6f2a5b7b31ed4439a3d14ef63e3ebfd7de29 (diff) | |
download | mariadb-git-49797c23b3750b0aa86bb3400a353e652bc1cd1c.tar.gz |
Fix for bug #20496: func_time.test failure
Diffstat (limited to 'mysql-test/t/func_time.test')
-rw-r--r-- | mysql-test/t/func_time.test | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mysql-test/t/func_time.test b/mysql-test/t/func_time.test index 23e3b9d982a..d69545712c8 100644 --- a/mysql-test/t/func_time.test +++ b/mysql-test/t/func_time.test @@ -347,7 +347,9 @@ drop table t1; # Bug #16546 # -select now() - now() + 0, curtime() - curtime() + 0, - sec_to_time(1) + 0, from_unixtime(1) + 0; +create table t1 select now() - now(), curtime() - curtime(), + sec_to_time(1) + 0, from_unixtime(1) + 0; +show create table t1; +drop table t1; # End of 4.1 tests |