1701.4.1
by Stewart Smith
some basic tests for PBXT |
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 |