init push

This commit is contained in:
oceanbase-admin
2021-05-31 22:56:52 +08:00
commit cea7de1475
7020 changed files with 5689869 additions and 0 deletions

View File

@ -0,0 +1,28 @@
##
select c1 from t1 union select c2 from t2;
select c1 from t1 union select c2 from t2 limit 2;
select c1 from t1 minus select c2 from t2 limit 2;
select c1 from t1 limit 2 union select c2 from t2;
select c1 from t1 union all select c2 from t2 limit 2;
select c1 from t1 limit 5 union all select c2 from t2 limit 2;
select c1 from t1 intersect select c2 from t2 limit 2;
select c1 from t1 union all select c2 from t2 order by c1;
select c1 from t1 union all select c2 from t2 order by c1 limit 2;
select c1, c2 from t1 order by c2 union all select c1, c2 from t2 order by c1 limit 2;
select c1, c2 from t1 limit 5 union all select c1, c2 from t2 order by c1 limit 2;
select c1 from t1 minus select c2 from t2 order by c1 limit 2;
## complex test
select * from v limit 10 union select * from v limit 10 union select * from v limit 10 union select * from v limit 10 union select * from v limit 10 union select * from v order by c1 limit 10;
select * from v order by c1 union select * from v order by c1 union select * from v order by c1 union select * from v order by c1 union select * from v order by c1 union select * from v order by c1 limit 10;
select * from v order by c1 union all select * from v order by c1 union all select * from v order by c1 union all select * from v order by c1 union all select * from v order by c1 union select * from v order by c1 limit 10;
(select c2 from t1 order by c2 intersect select * from v order by c2 limit 10)union (select c1 from t1 minus select * from v order by c1 limit 11) order by c2 limit 3;