Sign in
apache
/
drill-test-framework
/
0c85b4fdd97d4bceb9f295eb434983b210bff100
/
.
/
framework
/
resources
/
Functional
/
json
/
kvgenflatten-nulls
/
filter23.q
blob: bfc11997819258beb198df3474a20bed1ac3799d [
file
] [
log
] [
blame
]
select
s
.
rptds
from
(
select
d
.
type type
,
flatten
(
d
.
map
.
rm
[
1
].
rptd
)
rptds
,
flatten
(
d
.
features
)
feats
from
`data.json`
d
)
s
where
s
.
rptds
.
c
<
s
.
feats
.
`properties`
.
mag
and
s
.
type
=
'store'
;