Unclear documentation and requirement of clarification - Mailing list pgsql-docs

From PG Doc comments form
Subject Unclear documentation and requirement of clarification
Date
Msg-id 177634636825.403056.10912625029192163239@wrigleys.postgresql.org
Whole thread
Responses Re: Unclear documentation and requirement of clarification
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/18/tutorial-agg.html
Description:

Notice this particular section in the documentation of 2.7 Aggregrate
Functions (https://www.postgresql.org/docs/current/tutorial-agg.html) :
"If we wanted to know what city (or cities) that reading occurred in, we
might try:

SELECT city FROM weather WHERE temp_lo = max(temp_lo);     -- WRONG
but this will not work since the aggregate max cannot be used in the WHERE
clause. (This restriction exists because the WHERE clause determines which
rows will be included in the aggregate calculation; so obviously it has to
be evaluated before aggregate functions are computed.) However, as is often
the case the query can be restated to accomplish the desired result, here by
using a subquery:

SELECT city FROM weather
    WHERE temp_lo = (SELECT max(temp_lo) FROM weather);"

This would be better off if it's mentioned that in this particular case, we
actually need the aggregate function to be computed before the WHERE clause
and that's why we are using a subquery.




pgsql-docs by date:

Previous
From: Daniel Gustafsson
Date:
Subject: Re: pgsql: ssl: Serverside SNI support for libpq
Next
From: Amit Kapila
Date:
Subject: Re: Logical Replication upgrade