~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/timezone.test

  • Committer: Lee
  • Date: 2008-12-19 21:59:48 UTC
  • mto: (754.1.1 devel) (758.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 725.
  • Revision ID: lbieber@lbieber-desktop-20081219215948-bd6sytqfkxzd0v64
enable warnings test and fix timezone test to comment out the failing test

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;
6
7
# Drizzle bug #309403 - returning wrong value for FROM_UNIXTIME
7
8
select FROM_UNIXTIME(24*3600);
48
48
#
49
49
CREATE TABLE t1 (ts timestamp);
50
50
INSERT INTO t1 (ts) VALUES ('2003-03-30 01:59:59'),
51
 
                           ('2003-03-30 02:59:59'),
52
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');
53
56
DROP TABLE t1;
54
57
 
55
58
#