~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/mix2_myisam.result

  • Committer: Brian Aker
  • Date: 2008-12-24 00:37:31 UTC
  • Revision ID: brian@tangent.org-20081224003731-djv3brjlkgdacb2u
RemoveĀ setĀ insert_id

Show diffs side-by-side

added added

removed removed

Lines of Context:
748
748
) engine=MyISAM;
749
749
insert into t1 values (1,'one','one value',101),
750
750
(2,'two','two value',102),(3,'three','three value',103);
751
 
set insert_id=5;
752
751
replace into t1 (value,name,uid) values ('other value','two',102);
753
752
delete from t1 where uid=102;
754
 
set insert_id=5;
755
753
replace into t1 (value,name,uid) values ('other value','two',102);
756
 
set insert_id=6;
757
754
replace into t1 (value,name,uid) values ('other value','two',102);
758
755
select * from t1;
759
756
id      name    value   uid