~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbxt/tests/t/basic_create_select.test

  • Committer: Monty Taylor
  • Date: 2010-08-17 15:18:37 UTC
  • mfrom: (1711.1.20 build)
  • Revision ID: mordred@inaugust.com-20100817151837-xg0sc9n6tgjaf4mn
Rollup merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
create table t1 (d int primary key);
 
2
create table t2 (d int primary key);
 
3
insert into t1 values ("100000000");
 
4
insert into t2 values (2);
 
5
create table t3 (d int primary key) as select t2.d from t2 union select t1.d from t1;
 
6
select * from t3;
 
7
--replace_regex /ENGINE=[a-zA-Z]+/ENGINE=DEFAULT/
 
8
show create table t3;
 
9
drop table t1, t2, t3;
 
10