Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
functions
/
split
/
DRILL_6976_subquery_coalesce_split.sql
blob: 2f26b8ee056680ce21c1ecf6f9ea8c4e19e3aa3b [
file
] [
log
] [
blame
]
select
coalesce
(
col
,
n_name
)
from
(
select
split
(
n_comment
,
' '
)
[
3
]
col
,
n_name
from
cp
.`
tpch
/
nation
.
parquet
`
where
n_nationkey
=
-1
limit
5
);