SQL "RETURNING * | output_expression [ [ AS ]" is wrong - Mailing list pgsql-docs

From PG Doc comments form
Subject SQL "RETURNING * | output_expression [ [ AS ]" is wrong
Date
Msg-id 164785739575.668.4514247042951418611@wrigleys.postgresql.org
Whole thread Raw
Responses Re: SQL "RETURNING * | output_expression [ [ AS ]" is wrong  (Julien Rouhaud <rjuju123@gmail.com>)
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/14/sql-update.html
Description:

https://www.postgresql.org/docs/14/sql-update.html

Hi! AFAIK, UPDATE .... RETURNING works with INTO varname, not AS

Documentation says: 
UPDATE
[ WITH [ RECURSIVE ] with_query [, ...] ]
UPDATE [ ONLY ] table_name [ * ] [ [ AS ] alias ]
    SET { column_name = { expression | DEFAULT } |
          ( column_name [, ...] ) = [ ROW ] ( { expression | DEFAULT } [,
...] ) |
          ( column_name [, ...] ) = ( sub-SELECT )
        } [, ...]
    [ FROM from_item [, ...] ]
    [ WHERE condition | WHERE CURRENT OF cursor_name ]
    [ RETURNING * | output_expression [ [ AS ] output_name ] [, ...] ]

BUT it does not work, it does:
UPDATE
[ WITH [ RECURSIVE ] with_query [, ...] ]
UPDATE [ ONLY ] table_name [ * ] [ [ AS ] alias ]
    SET { column_name = { expression | DEFAULT } |
          ( column_name [, ...] ) = [ ROW ] ( { expression | DEFAULT } [,
...] ) |
          ( column_name [, ...] ) = ( sub-SELECT )
        } [, ...]
    [ FROM from_item [, ...] ]
    [ WHERE condition | WHERE CURRENT OF cursor_name ]
    [ RETURNING * | output_expression [ [ INTO ] output_name ] [, ...] ]

Regards, 
Miguel.

pgsql-docs by date:

Previous
From: Tom Lane
Date:
Subject: Re: systemd service start - disable timeout with "infinity"
Next
From: Julien Rouhaud
Date:
Subject: Re: SQL "RETURNING * | output_expression [ [ AS ]" is wrong