~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/insert.test

  • Committer: Monty Taylor
  • Date: 2009-01-30 21:02:37 UTC
  • mto: (779.7.3 devel)
  • mto: This revision was merged to the branch mainline in revision 823.
  • Revision ID: mordred@inaugust.com-20090130210237-3n6ld8a9jc084jko
Commented out a test in subselect_sj - I think it might be a regression. Jay?

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
insert ignore into t1 values(NULL,100),(NULL,110),(NULL,120);
170
170
insert ignore into t1 values(NULL,10),(NULL,20),(NULL,110),(NULL,120),(NULL,100),(NULL,90);
171
171
insert ignore into t1 values(NULL,130),(NULL,140),(500,110),(550,120),(450,100),(NULL,150);
 
172
# PBXT differs from InnoDB here. Main reason is that inserting
 
173
# 500 causes auto inc value to be set to 501, this is never
 
174
# undone because of possible concurrent inserts.
172
175
select * from t1 order by id;
173
176
 
174
177
drop table t1;