Re: Window Functions with identical PARTITION BY and ORDER BY clauses evaluated separately - Mailing list pgsql-bugs

From Christopher Inokuchi
Subject Re: Window Functions with identical PARTITION BY and ORDER BY clauses evaluated separately
Date
Msg-id CABde6B40mE4me17sKLGZ6MspZ4YiaSsK8S4FunP13c+QNT+fKA@mail.gmail.com
Whole thread Raw
In response to Re: Window Functions with identical PARTITION BY and ORDER BY clauses evaluated separately  (Greg Sabino Mullane <htamfids@gmail.com>)
Responses Re: Window Functions with identical PARTITION BY and ORDER BY clauses evaluated separately
List pgsql-bugs

Was it really not intentional that the docs explicitly name PARTITION BY and ORDER BY rather than the entire window_definition? If I understand correctly, only those two clauses control which records are hit and in what order.

Sorry for the impudence, but I was rather excited for the potential performance gain when I saw the doc excerpt. I appreciate the time taken to respond to my query.

Thank you,
Christopher Inokuchi

On Fri, Mar 7, 2025 at 6:24 AM Greg Sabino Mullane <htamfids@gmail.com> wrote:
Those are different windows. See:

https://www.postgresql.org/docs/current/sql-expressions.html#SYNTAX-WINDOW-FUNCTIONS

Because the (optional) frame_clause is part of the window_definition, it does seem like a minor documentation bug as we ought to mention that the frame (if it exists) needs to be equivalent too. Here's a better link to where we state that:


Here's a simplified example:

greg=# explain select count(*) over (partition by oid rows between 1000 preceding and 1000 following),
count(*) over (partition by oid rows between 1000 preceding and 1000 following) from pg_class;
                                           QUERY PLAN
-------------------------------------------------------------------------------------------------
 WindowAgg  (cost=0.28..60.87 rows=791 width=20)
   ->  Index Only Scan using pg_class_oid_index on pg_class  (cost=0.28..49.00 rows=791 width=4)
(2 rows)

greg=# explain select count(*) over (partition by oid rows between 1000 preceding and 1000 following),
count(*) over (partition by oid rows between 1000 preceding and 9999 following) from pg_class;
                                              QUERY PLAN
-------------------------------------------------------------------------------------------------------
 WindowAgg  (cost=0.28..72.73 rows=791 width=20)
   ->  WindowAgg  (cost=0.28..60.87 rows=791 width=12)
         ->  Index Only Scan using pg_class_oid_index on pg_class  (cost=0.28..49.00 rows=791 width=4)

Cheers,
Greg

--
Enterprise Postgres Software Products & Tech Support

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #18835: spgist index fails to accept point with NaN
Next
From: PG Bug reporting form
Date:
Subject: BUG #18836: Cannot import foreign schema under different schema name when foreign table uses row types