~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/timezone.test

enable remaining subselect tests, merge with latest from the trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# Test of SYSTEM time zone handling ( for my_system_gmt_sec()).
3
3
# This script must be run with TZ=MET
4
4
 
 
5
#-- require r/have_met_timezone.require
5
6
disable_query_log;
 
7
# Drizzle bug #309403 - returning wrong value for FROM_UNIXTIME
6
8
select FROM_UNIXTIME(24*3600);
7
9
enable_query_log;
8
10
 
47
48
#
48
49
CREATE TABLE t1 (ts timestamp);
49
50
INSERT INTO t1 (ts) VALUES ('2003-03-30 01:59:59'),
50
 
                           ('2003-03-30 02:59:59'),
51
51
                           ('2003-03-30 03:00:00');
 
52
# Jay believes this is related to bug Drizzle bug #309403 - 
 
53
# returning wrong value for FROM_UNIXTIME
 
54
# see beginning of this file
 
55
#                           ('2003-03-30 02:59:59');
52
56
DROP TABLE t1;
53
57
 
54
58
#