~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/keywords.test

  • Committer: Monty Taylor
  • Date: 2009-02-11 04:52:41 UTC
  • mfrom: (877 drizzle)
  • mto: This revision was merged to the branch mainline in revision 879.
  • Revision ID: mordred@inaugust.com-20090211045241-l3xho3ifn3dq8xu0
MergedĀ fromĀ trunk.

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;