1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00
Files
mariadb-columnstore-engine/mysql-test/columnstore/autopilot/r/mcs6896_outerjoin_fourTablesCnt.result
Daniel Lee 4c9d6e39ac Dlee mtr restructure (#2494)
* Restructured test suites and added autopilot and extended suites

* Updated autopilot with correct branch - develop

* Moved setup test case to a 'setup' directory, for consistency

* Fixed a path issue

* Updated some tests cases to keep up with development

Co-authored-by: root <root@rocky8.localdomain>
2022-08-09 21:20:56 +03:00

198 lines
5.5 KiB
Plaintext

USE outerjoin;
select count(*) from orders o
join customer c on o.o_custkey = c.c_custkey
join nation n on c.c_nationkey = n.n_nationkey
join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1500
select count(*) from orders o
join customer c on o.o_custkey = c.c_custkey
join nation n on c.c_nationkey = n.n_nationkey
join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1500
select count(*) from orders o
join customer c on o.o_custkey = c.c_custkey
join nation n on c.c_nationkey = n.n_nationkey
left join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1500
select count(*) from orders o
join customer c on o.o_custkey = c.c_custkey
join nation n on c.c_nationkey = n.n_nationkey
right join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1504
select count(*) from orders o
join customer c on o.o_custkey = c.c_custkey
left join nation n on c.c_nationkey = n.n_nationkey
join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1500
select count(*) from orders o
join customer c on o.o_custkey = c.c_custkey
left join nation n on c.c_nationkey = n.n_nationkey
left join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1502
select count(*) from orders o
join customer c on o.o_custkey = c.c_custkey
left join nation n on c.c_nationkey = n.n_nationkey
right join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1504
select count(*) from orders o
join customer c on o.o_custkey = c.c_custkey
right join nation n on c.c_nationkey = n.n_nationkey
join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1501
select count(*) from orders o
join customer c on o.o_custkey = c.c_custkey
right join nation n on c.c_nationkey = n.n_nationkey
left join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1507
select count(*) from orders o
join customer c on o.o_custkey = c.c_custkey
right join nation n on c.c_nationkey = n.n_nationkey
right join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1505
select count(*) from orders o
left join customer c on o.o_custkey = c.c_custkey
join nation n on c.c_nationkey = n.n_nationkey
join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1500
select count(*) from orders o
left join customer c on o.o_custkey = c.c_custkey
join nation n on c.c_nationkey = n.n_nationkey
left join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1500
select count(*) from orders o
left join customer c on o.o_custkey = c.c_custkey
join nation n on c.c_nationkey = n.n_nationkey
right join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1504
select count(*) from orders o
left join customer c on o.o_custkey = c.c_custkey
left join nation n on c.c_nationkey = n.n_nationkey
join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1500
select count(*) from orders o
left join customer c on o.o_custkey = c.c_custkey
left join nation n on c.c_nationkey = n.n_nationkey
left join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1610
select count(*) from orders o
left join customer c on o.o_custkey = c.c_custkey
left join nation n on c.c_nationkey = n.n_nationkey
right join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1504
select count(*) from orders o
left join customer c on o.o_custkey = c.c_custkey
right join nation n on c.c_nationkey = n.n_nationkey
join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1501
select count(*) from orders o
left join customer c on o.o_custkey = c.c_custkey
right join nation n on c.c_nationkey = n.n_nationkey
left join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1507
select count(*) from orders o
left join customer c on o.o_custkey = c.c_custkey
right join nation n on c.c_nationkey = n.n_nationkey
right join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1505
select count(*) from orders o
left join customer c on o.o_custkey = c.c_custkey
join nation n on c.c_nationkey = n.n_nationkey
join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1500
select count(*) from orders o
left join customer c on o.o_custkey = c.c_custkey
join nation n on c.c_nationkey = n.n_nationkey
left join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1500
select count(*) from orders o
left join customer c on o.o_custkey = c.c_custkey
join nation n on c.c_nationkey = n.n_nationkey
right join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1504
select count(*) from orders o
right join customer c on o.o_custkey = c.c_custkey
left join nation n on c.c_nationkey = n.n_nationkey
join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1550
select count(*) from orders o
right join customer c on o.o_custkey = c.c_custkey
left join nation n on c.c_nationkey = n.n_nationkey
left join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1591
select count(*) from orders o
right join customer c on o.o_custkey = c.c_custkey
left join nation n on c.c_nationkey = n.n_nationkey
right join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1554
select count(*) from orders o
right join customer c on o.o_custkey = c.c_custkey
right join nation n on c.c_nationkey = n.n_nationkey
join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1550
select count(*) from orders o
right join customer c on o.o_custkey = c.c_custkey
right join nation n on c.c_nationkey = n.n_nationkey
left join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1556
select count(*) from orders o
right join customer c on o.o_custkey = c.c_custkey
right join nation n on c.c_nationkey = n.n_nationkey
right join region r on n.n_regionkey = r.r_regionkey
;
count(*)
1554