~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/embedded_innodb/tests/t/basic_insert.test

  • Committer: mordred
  • Date: 2010-04-20 00:00:46 UTC
  • mfrom: (1471.5.3 more-valgrind)
  • mto: This revision was merged to the branch mainline in revision 1498.
  • Revision ID: mordred@orisndriz09-20100420000046-263x5hazl0huw8u3
MergedĀ inĀ more-valgrind.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
create table t1 (a int);
 
1
create table t1 (a int primary key);
2
2
insert into t1 (a) values (1);
3
3
drop table t1;