Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
joins
/
nulleqjoin
/
nullEqJoin_21.q
blob: 7ac3b63d080cc580af35d46f9f9c04271ce77ac6 [
file
] [
log
] [
blame
]
select
t1
.
c1
,
t2
.
c2
from
`t_alltype.parquet`
t1
,
`t_alltype.parquet`
t2 WHERE t1
.
c1
=
t2
.
c1 AND
(
t1
.
c2
=
t2
.
c2 OR
(
t1
.
c1
is
null
and
t2
.
c1
is
null
)
);