Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
limit0
/
filters
/
plan
/
q3.sql
blob: d4d5a60e5cf332d6ac234e89a50cc1c51e665b99 [
file
] [
log
] [
blame
]
explain
plan
for
select
*
from
(
-- simple predicate on a groupping column
select
x
,
y
,
z
from
(
select
a1
,
b1
,
avg
(
a1
)
from
t1_v t1
group
by
a1
,
b1
)
as
sq
(
x
,
y
,
z
)
where
x
between
1
and
100
)
t limit
0
;