Re: Code example not following convention

2022-11-19 Thread David G. Johnston
On Sat, Nov 19, 2022 at 2:55 PM PG Doc comments form wrote: > The following documentation comment has been logged on the website: > > Page: https://www.postgresql.org/docs/15/tutorial-window.html > Description: > > in: > https://www.postgresql.org/docs/current/tutorial-window.html > The example

Code example not following convention

2022-11-19 Thread PG Doc comments form
The following documentation comment has been logged on the website: Page: https://www.postgresql.org/docs/15/tutorial-window.html Description: in: https://www.postgresql.org/docs/current/tutorial-window.html The example involving the RANK() function displays it in lower-case, which is misleading

Re: https://www.postgresql.org/docs/15/tutorial-agg.html

2022-11-19 Thread Tom Lane
PG Doc comments form writes: > Page: https://www.postgresql.org/docs/15/tutorial-agg.html > Description: > city | max | count > -+-+--- > Hayward | 37 | 5 > (1 row) > it's not right Yeah, that example is broken. You can see the repaired text at

https://www.postgresql.org/docs/15/tutorial-agg.html

2022-11-19 Thread PG Doc comments form
The following documentation comment has been logged on the website: Page: https://www.postgresql.org/docs/15/tutorial-agg.html Description: city | max | count -+-+--- Hayward | 37 | 5 (1 row) it's not right SELECT city, max(temp_lo), count(*) FILTER (WHERE temp_lo < 30)