Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
case_expr
/
caseExprWconst_40.q
blob: 2a19011e9aba9809f3b091922993c449abe15224 [
file
] [
log
] [
blame
]
SELECT
*
FROM
(
SELECT
(
CASE WHEN
(
true
)
THEN
'qwe'
ELSE
null
END
)
res1
FROM
(
VALUES
(
1
))
test_tbl
)
test
where
res1 IN
(
'ab'
,
'dab'
,
'qw'
,
'qwe'
);