Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
limit0
/
filters
/
plan
/
q9.sql
blob: 498b0173e6f081e53ad279f547e91acbf7aa096e [
file
] [
log
] [
blame
]
explain
plan
for
select
*
from
(
-- like predicate
select
x
,
y
,
z
from
(
select
a1
,
b1
,
avg
(
a1
)
from
t1_v t1
group
by
a1
,
b1
)
as
sq
(
x
,
y
,
z
)
where
y
like
'%b%'
)
t limit
0
;