~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/union.test

  • Committer: Brian Aker
  • Date: 2009-11-19 18:26:26 UTC
  • mto: (1223.1.4 push) (1226.1.2 push)
  • mto: This revision was merged to the branch mainline in revision 1224.
  • Revision ID: brian@gaz-20091119182626-5w98h5vnf1819sco
Fix engines to not rely on HA_CREATE_INFO.

There were a number of test cases where Innodb was accepting the wrong
ROW_FORMAT and just tossing warnings. It would cause the DFE to then be
different then the actual table definition.

Show diffs side-by-side

added added

removed removed

Lines of Context:
802
802
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
803
803
show create table t2;
804
804
select row_format from information_schema.TABLES where table_schema="test" and table_name="t2";
805
 
alter table t2 ROW_FORMAT=fixed;
806
805
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
807
806
show create table t2;
808
807
drop table t1,t2;