Sign in
apache
/
druid
/
HEAD
/
.
/
sql
/
src
/
test
/
resources
/
drill
/
window
/
queries
/
nestedAggs
/
basic_7.q
blob: 7cedfb6858e5167cbf00d9c6a082d3b5a410dda1 [
file
]
SELECT col6
,
MAX
(
MIN
(
col6
))
OVER
(
PARTITION BY col7 ORDER BY col0
)
max_col6
,
col7 FROM
"allTypsUniq.parquet"
GROUP BY col0
,
col6
,
col7