Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
limit0
/
filters
/
plan
/
q16.sql
blob: 6e0763e967f955db3cec8a79409b8f19873b1762 [
file
] [
log
] [
blame
]
explain
plan
for
select
*
from
(
select
x
,
y
,
z
from
(
select
a1
,
b1
,
avg
(
a1
)
from
t1_v t1
group
by
a1
,
b1
)
as
sq
(
x
,
y
,
z
)
where
cast
(
x
as
varchar
(
10
))
<>
concat
(
upper
(
y
),
'abc'
))
t limit
0
;