Sign in
apache
/
drill-test-framework
/
9a5d7ecf7f32f0e95c0ea874e75d785fdee9e51d
/
.
/
framework
/
resources
/
Functional
/
flatten_operators
/
2rows
/
filter24.q
blob: 6420af56756342300008dacee6e18a091b131cce [
file
] [
log
] [
blame
]
select
*
from
(
select
d
.
type type
,
flatten
(
d
.
events
)
evnts
,
flatten
(
d
.
features
)
feats
from
`data.json`
d
)
s
where
s
.
evnts
.
type
=
s
.
feats
.
type
;