Thread: Incorrect in Window Functions

Incorrect in Window Functions

From
PG Doc comments form
Date:
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/12/tutorial-window.html
Description:

Link: https://www.postgresql.org/docs/12/tutorial-window.html

> The first three output columns come directly from the table empsalary, and
there is one output row for each row in the table. 

Should be:

The first three output columns come directly from the table empsalary, and
there is one output column for each row in the table.

Re: Incorrect in Window Functions

From
"David G. Johnston"
Date:
On Tuesday, April 13, 2021, PG Doc comments form <noreply@postgresql.org> wrote:
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/12/tutorial-window.html
Description:

Link: https://www.postgresql.org/docs/12/tutorial-window.html

> The first three output columns come directly from the table empsalary, and
there is one output row for each row in the table.

Should be:

The first three output columns come directly from the table empsalary, and
there is one output column for each row in the table.

The existing wording is correct and the proposed wrong is not.

David J.