Missing ;

From: PG Doc comments form <noreply(at)postgresql(dot)org>
To: pgsql-docs(at)lists(dot)postgresql(dot)org
Cc: tim(dot)needham2(at)gmail(dot)com
Subject: Missing ;
Date: 2023-11-10 21:00:40
Message-ID: 169965004097.225187.12941375915673151540@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/16/sql-select.html
Description:

Hi,

To be consistent, the "with" example should end in a ";".

WITH t AS (
SELECT random() as x FROM generate_series(1, 3)
)
SELECT * FROM t
UNION ALL
SELECT * FROM t;

Possibly the most pathetic contribution ever?
Apologies.

Tim

Responses

Browse pgsql-docs by date

  From Date Subject
Next Message Paul A Jungwirth 2023-11-11 21:17:26 Re: Add minimal C example and SQL registration example for custom table access methods.
Previous Message Bruce Momjian 2023-11-09 23:40:55 Re: remove deprecated @@@ operator ?