Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
limit0
/
filters
/
plan
/
q20.sql
blob: 3b9f7443f74cd0b6f577f056e51bd254f2a2a908 [
file
] [
log
] [
blame
]
explain
plan
for
select
*
from
(
-- full outer join
select
x
,
y
,
z
from
(
select
t1
.
a1
,
t1
.
b1
,
avg
(
t1
.
a1
)
from
t1_v t1
right
outer
join
t3_v t3
on
t1
.
c1
=
t3
.
c3
group
by
t1
.
a1
,
t1
.
b1
)
as
sq
(
x
,
y
,
z
)
where
x
=
0
)
t limit
0
;