~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
#
2
# Test keywords as fields
3
#
4
5
--disable_warnings
6
drop table if exists t1;
7
--enable_warnings
8
896.5.1 by Jay Pipes
Removes the TIME column type and related time functions.
9
create table t1 (date date, timestamp timestamp,
1 by brian
clean slate
10
quarter int, week int, year int, timestampadd int, timestampdiff int);
896.5.1 by Jay Pipes
Removes the TIME column type and related time functions.
11
insert into t1 values ("97/02/03","1997-01-02",1,2,3,4,5);
1 by brian
clean slate
12
select * from t1;
896.5.1 by Jay Pipes
Removes the TIME column type and related time functions.
13
select t1.date+0,t1.timestamp+0,
1 by brian
clean slate
14
       t1.quarter+t1.week, t1.year+timestampadd,  timestampdiff from t1;
15
drop table t1;
16
create table events(binlog int);
17
insert into events values(1);
18
select events.binlog from events;
19
drop table events;
20
21
# End of 4.1 tests
22
23
24
# End of 5.1 tests
25
26
# End of 5.0 tests