~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/insert_update.result

  • Committer: Brian Aker
  • Date: 2009-08-24 20:01:53 UTC
  • mfrom: (1119.2.11 merge)
  • Revision ID: brian@gaz-20090824200153-o7lawmu7lfkimc33
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
389
389
id      c1      cnt
390
390
1       0       3
391
391
2       2       1
392
 
DROP TABLE t1;
 
392
DROP TABLE t1,t2;
393
393
create table t1(f1 int primary key,
394
394
f2 timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP);
395
395
insert into t1(f1) values(1);