Sign in
apache
/
drill-test-framework
/
d8d7538f560c515139a5f4743d86b15968a46092
/
.
/
framework
/
resources
/
Functional
/
functions
/
coalesce
/
DRILL_6976_subquery_substr_coalesce.sql
blob: e10f28fbaa641637bcd304557c03f0f51d3e5476 [
file
]
select
substr
(
col
,
2
,
3
)
from
(
select
coalesce
(
n_comment
,
n_name
)
col
from
cp
.`
tpch
/
nation
.
parquet
`
where
n_nationkey
=
-1
limit
5
);