~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/keywords.test

  • Committer: Brian Aker
  • Date: 2009-02-12 22:45:08 UTC
  • Revision ID: brian@tangent.org-20090212224508-mrd9jwgn1zjdpqdk
Minor refactoring (we will need to disconnect the code from the include
file).

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
create table t1 (time time, date date, timestamp timestamp,
10
10
quarter int, week int, year int, timestampadd int, timestampdiff int);
11
 
insert into t1 values ("12:22:22","97:02:03","1997-01-02",1,2,3,4,5);
 
11
insert into t1 values ("12:22:22","97/02/03","1997-01-02",1,2,3,4,5);
12
12
select * from t1;
13
13
select t1.time+0,t1.date+0,t1.timestamp+0,concat(date," ",time),
14
14
       t1.quarter+t1.week, t1.year+timestampadd,  timestampdiff from t1;