~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_timestamp.test

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
--enable_warnings
8
8
 
9
9
# Set timezone to GMT-3, to make it possible to use "interval 3 hour"
 
10
set time_zone="+03:00";
 
11
 
10
12
create table t1 (Zeit time, Tag int not null, Monat int not null,
11
13
Jahr int not null, index(Tag), index(Monat), index(Jahr) );
12
14
insert into t1 values ("09:26:00",16,9,1998),("09:26:00",16,9,1998);
16
18
drop table t1;
17
19
 
18
20
# End of 4.1 tests
 
21
 
 
22
# Restore timezone to default
 
23
set time_zone= @@global.time_zone;