Sign in
apache
/
drill-test-framework
/
HEAD
/
.
/
framework
/
resources
/
Functional
/
window_functions
/
aggregates
/
winFnQry_62.q
blob: 4444bd458d245fe061a6d7baeaf0527b050ff500 [
file
] [
log
] [
blame
]
select
c1
,
c2
,
max
(
c1
)
over
(
partition
by
c2 order
by
c1 nulls first
)
w_max
from
`tblWnulls.parquet`
;