summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authortnurnberg@mysql.com <>2006-06-22 22:21:43 +0200
committertnurnberg@mysql.com <>2006-06-22 22:21:43 +0200
commit1a79cb56f527b2cc495ffb560552ea7ef31ae8d5 (patch)
tree0246cfb5983fd43ea7724e28c2c5bbda1f84c0d6 /mysql-test/t
parent8fd6830478d492bc868a150c6143085ced848076 (diff)
parent08e5b005b0010ade2d4705663bcc4d7e24857eee (diff)
downloadmariadb-git-1a79cb56f527b2cc495ffb560552ea7ef31ae8d5.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-5.0-maint
into mysql.com:/home/tnurnberg/mysql-5.0-maint-19409
Diffstat (limited to 'mysql-test/t')
-rw-r--r--mysql-test/t/func_timestamp.test6
-rw-r--r--mysql-test/t/type_timestamp.test6
2 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/t/func_timestamp.test b/mysql-test/t/func_timestamp.test
index e1bb7e878ee..05a91b06d28 100644
--- a/mysql-test/t/func_timestamp.test
+++ b/mysql-test/t/func_timestamp.test
@@ -6,6 +6,9 @@
drop table if exists t1;
--enable_warnings
+# Set timezone to GMT-3, to make it possible to use "interval 3 hour"
+set time_zone="+03:00";
+
create table t1 (Zeit time, Tag tinyint not null, Monat tinyint not null,
Jahr smallint not null, index(Tag), index(Monat), index(Jahr) );
insert into t1 values ("09:26:00",16,9,1998),("09:26:00",16,9,1998);
@@ -15,3 +18,6 @@ FROM t1;
drop table t1;
# End of 4.1 tests
+
+# Restore timezone to default
+set time_zone= @@global.time_zone;
diff --git a/mysql-test/t/type_timestamp.test b/mysql-test/t/type_timestamp.test
index f96beedbebc..ddfc3f11665 100644
--- a/mysql-test/t/type_timestamp.test
+++ b/mysql-test/t/type_timestamp.test
@@ -6,6 +6,9 @@
drop table if exists t1,t2;
--enable_warnings
+# Set timezone to GMT-3, to make it possible to use "interval 3 hour"
+set time_zone="+03:00";
+
CREATE TABLE t1 (a int, t timestamp);
CREATE TABLE t2 (a int, t datetime);
SET TIMESTAMP=1234;
@@ -322,3 +325,6 @@ select * from t1;
drop table t1;
# End of 4.1 tests
+
+# Restore timezone to default
+set time_zone= @@global.time_zone;