Commit ead17011 authored by Michael Widenius's avatar Michael Widenius

Fixed LP#524679: make test ORDER BY date_ord ASC

(Problem was missing time_zone setting)
parent 947f0d76
...@@ -5,6 +5,11 @@ ...@@ -5,6 +5,11 @@
drop table if exists t1; drop table if exists t1;
--enable_warnings --enable_warnings
--disable_query_log
# Set timezone to something specific, to make it possible to use unix_timestamp
set time_zone="+03:00";
--enable_query_log
# #
# Simple IF tests # Simple IF tests
# #
...@@ -163,5 +168,9 @@ SELECT * FROM (SELECT MAX(IFNULL(CAST(c AS UNSIGNED), 0)) FROM t1) AS te; ...@@ -163,5 +168,9 @@ SELECT * FROM (SELECT MAX(IFNULL(CAST(c AS UNSIGNED), 0)) FROM t1) AS te;
DROP TABLE t1; DROP TABLE t1;
--echo End of 5.0 tests --echo End of 5.0 tests
--disable_query_log
# Restore timezone to default
set time_zone= @@global.time_zone;
--enable_query_log
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment