~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/innodb_mysql.result

  • Committer: Brian Aker
  • Date: 2010-05-27 01:22:55 UTC
  • mto: This revision was merged to the branch mainline in revision 1568.
  • Revision ID: brian@gaz-20100527012255-ssmjt4un8ptpg4jv
Remove dead .opt files. Removed two options from Innodb which do not relate
to drizzle (backwards compatible options for old MySQL). 

Show diffs side-by-side

added added

removed removed

Lines of Context:
351
351
name    dept
352
352
DROP TABLE t1;
353
353
drop table if exists t1;
354
 
show variables like 'innodb_rollback_on_timeout';
355
 
Variable_name   Value
356
 
innodb_rollback_on_timeout      OFF
357
354
create table t1 (a int not null primary key) engine = innodb;
358
355
insert into t1 values (1);
359
356
commit;
408
405
tes     1234
409
406
drop table test;
410
407
drop table if exists t1;
411
 
show variables like 'innodb_rollback_on_timeout';
412
 
Variable_name   Value
413
 
innodb_rollback_on_timeout      OFF
414
408
create table t1 (a int not null primary key) engine = innodb;
415
409
insert into t1 values (1);
416
410
commit;
659
653
1       SIMPLE  t1      ALL     NULL    NULL    NULL    NULL    128     Using filesort
660
654
DROP TABLE t1;
661
655
drop table if exists t1;
662
 
show variables like 'innodb_rollback_on_timeout';
663
 
Variable_name   Value
664
 
innodb_rollback_on_timeout      OFF
665
656
create table t1 (a int not null primary key) engine = innodb;
666
657
insert into t1 values (1);
667
658
commit;