~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/timezone.test

  • Committer: Brian Aker
  • Date: 2008-07-20 05:41:52 UTC
  • Revision ID: brian@tangent.org-20080720054152-5laf6plsb0o7h6ss
Documentation cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Test of SYSTEM time zone handling ( for my_system_gmt_sec()).
3
 
# This script must be run with TZ=MET
4
 
 
5
 
#-- require r/have_met_timezone.require
6
 
disable_query_log;
7
 
# Drizzle bug #309403 - returning wrong value for FROM_UNIXTIME
8
 
select FROM_UNIXTIME(24*3600);
9
 
enable_query_log;
10
 
 
11
 
# Initialization
12
 
--disable_warnings
13
 
DROP TABLE IF EXISTS t1;
14
 
--enable_warnings
15
 
 
16
 
#
17
 
# Test unix timestamp
18
 
#
19
 
select @a:=FROM_UNIXTIME(1);
20
 
select unix_timestamp(@a);
21
 
 
22
 
#
23
 
# Test of some values, including some with daylight saving time
24
 
#
25
 
 
26
 
CREATE TABLE t1 (ts int);
27
 
INSERT INTO t1 (ts) VALUES (Unix_timestamp('2002-10-27 01:00'));
28
 
INSERT INTO t1 (ts) VALUES (Unix_timestamp('2002-10-27 02:00'));
29
 
INSERT INTO t1 (ts) VALUES (Unix_timestamp('2002-10-27 03:00'));
30
 
INSERT INTO t1 (ts) VALUES (Unix_timestamp('2002-10-27 02:00'));
31
 
INSERT INTO t1 (ts) VALUES (Unix_timestamp('2002-10-27 01:00'));
32
 
INSERT INTO t1 (ts) VALUES (Unix_timestamp('2002-10-27 02:00'));
33
 
INSERT INTO t1 (ts) VALUES (Unix_timestamp('2003-03-30 02:59:59'));
34
 
INSERT INTO t1 (ts) VALUES (Unix_timestamp('2003-03-30 03:00:00'));
35
 
INSERT INTO t1 (ts) VALUES (Unix_timestamp('2003-03-30 03:59:59'));
36
 
INSERT INTO t1 (ts) VALUES (Unix_timestamp('2003-03-30 04:00:01'));
37
 
 
38
 
SELECT ts,from_unixtime(ts) FROM t1;
39
 
DROP TABLE t1;
40
 
 
41
 
 
42
 
#
43
 
# Test of warning for spring time-gap values for system time zone
44
 
#
45
 
CREATE TABLE t1 (ts timestamp);
46
 
INSERT INTO t1 (ts) VALUES ('2003-03-30 01:59:59'),
47
 
                           ('2003-03-30 03:00:00');
48
 
# Jay believes this is related to bug Drizzle bug #309403 - 
49
 
# returning wrong value for FROM_UNIXTIME
50
 
# see beginning of this file
51
 
#                           ('2003-03-30 02:59:59');
52
 
DROP TABLE t1;
53
 
 
54
 
#
55
 
# Test for fix for Bug#2523 Check that boundary dates are processed
56
 
# correctly.
57
 
#
58
 
select unix_timestamp('1970-01-01 00:00:00');
59
 
select unix_timestamp('1970-01-01 00:00:01');
60
 
select unix_timestamp('2038-01-19 03:14:07');
61
 
--error 1685 # Bad timestamp
62
 
select unix_timestamp('2038-01-19 03:14:08');
63
 
 
64
 
# End of 4.1 tests