~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/include/mix1.inc

  • Committer: Brian Aker
  • Date: 2008-11-21 23:53:09 UTC
  • mfrom: (590.1.8 drizzle-nofrm)
  • Revision ID: brian@tangent.org-20081121235309-77pu95n2pboadtos
Merge in Stewart's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
578
578
DROP TABLE t1,t2,t3;
579
579
 
580
580
#
581
 
# Test bug when trying to drop data file which no InnoDB directory entry
582
 
#
583
 
 
584
 
create table t1 (a int) engine=innodb;
585
 
copy_file $MYSQLTEST_VARDIR/master-data/test/t1.frm $MYSQLTEST_VARDIR/master-data/test/bug29807.frm;
586
 
--error 1146
587
 
select * from bug29807;
588
 
drop table t1;
589
 
--error 1051
590
 
drop table bug29807;
591
 
create table bug29807 (a int);
592
 
drop table bug29807;
593
 
 
594
 
 
595
 
#
596
581
# Bug #29154: LOCK TABLES is not atomic when >1 InnoDB tables are locked
597
582
#
598
583