"5.3. Identity Columns" Incorrect Usage of "VALUE" in Documentation - Mailing list pgsql-docs

From PG Doc comments form
Subject "5.3. Identity Columns" Incorrect Usage of "VALUE" in Documentation
Date
Msg-id 172958472112.696.6075270400394560263@wrigleys.postgresql.org
Whole thread Raw
Responses Re: "5.3. Identity Columns" Incorrect Usage of "VALUE" in Documentation
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/17/ddl-identity-columns.html
Description:

In the PostgreSQL documentation regarding identity columns, the SQL syntax
examples incorrectly use the keyword "VALUE" instead of "VALUES". This error
could lead to confusion for users attempting to insert data into tables with
identity columns. The correct syntax for inserting data should read:

INSERT INTO people (name, address) VALUES ('A', 'foo');
INSERT INTO people (name, address) VALUES ('B', 'bar');

I recommend updating the documentation to correct this inconsistency for
clarity.

pgsql-docs by date:

Previous
From: PG Doc comments form
Date:
Subject: (Very minor) Link towards the 'bug-submission' web form
Next
From: Daniel Gustafsson
Date:
Subject: Re: "5.3. Identity Columns" Incorrect Usage of "VALUE" in Documentation