1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-29 00:08:14 +03:00

Fix for bug #20496: func_time.test failure

This commit is contained in:
ramil@mysql.com
2006-06-19 13:03:29 +05:00
parent c02e6f2a5b
commit 49797c23b3
2 changed files with 14 additions and 5 deletions

View File

@@ -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