aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/window/current/aggregations_leadlag.sql
blob: c73f26cb67aee98e63e50a003525349fe31c84bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* syntax version 1 */
/* postgres can not */

SELECT
    value,
    SUM(unwrap(cast(subkey as uint32))) over w1 as sum1,
    LEAD(value || value, 3)             over w1 as dvalue_lead1,

    SUM(cast(subkey as uint32))         over w2 as sum2,
    LAG(cast(value as uint32))          over w2 as value_lag2,
FROM plato.Input
WINDOW
    w1 as (PARTITION BY key ORDER BY value),
    w2 as (                 ORDER BY value)
ORDER BY value;