~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/create_not_windows.test

  • Committer: Jay Pipes
  • Date: 2009-02-04 15:44:25 UTC
  • mfrom: (829 drizzle)
  • mto: This revision was merged to the branch mainline in revision 830.
  • Revision ID: jpipes@serialcoder-20090204154425-th8xfk2ujz2y8xwg
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
create table break_frm(a int) engine=myisam;
27
27
insert into break_frm values(1);
28
28
--system rm -f $MYSQLTEST_VARDIR/master-data/test/break_frm.frm
 
29
--system rm -f $MYSQLTEST_VARDIR/master-data/test/break_frm.dfe
29
30
--echo "We get an error because the table is in the definition cache"
30
31
--error ER_TABLE_EXISTS_ERROR
31
32
create table break_frm(a int, b int);