~jaypipes/drizzle/split-xa-resource-manager

« back to all changes in this revision

Viewing changes to tests/t/union.test

  • Committer: Jay Pipes
  • Date: 2010-02-14 20:26:43 UTC
  • mfrom: (1273.1.27 staging)
  • Revision ID: jpipes@serialcoder-20100214202643-ahuqvc8rhn8u7y33
Merge trunk and resolve conflicts

Show diffs side-by-side

added added

removed removed

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