~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/keywords.result

  • Committer: Stewart Smith
  • Date: 2009-02-16 04:19:00 UTC
  • mfrom: (869.2.6 dollhouse)
  • mto: This revision was merged to the branch mainline in revision 887.
  • Revision ID: stewart@flamingspork.com-20090216041900-idx8llj31btz5as3
merge unireg_type removal, mainline

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1;
2
2
create table t1 (time time, date date, timestamp timestamp,
3
3
quarter int, week int, year int, timestampadd int, timestampdiff int);
4
 
insert into t1 values ("12:22:22","97:02:03","1997-01-02",1,2,3,4,5);
 
4
insert into t1 values ("12:22:22","97/02/03","1997-01-02",1,2,3,4,5);
5
5
select * from t1;
6
6
time    date    timestamp       quarter week    year    timestampadd    timestampdiff
7
7
12:22:22        1997-02-03      1997-01-02 00:00:00     1       2       3       4       5