BUG #18543: Mistake in docs example - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #18543: Mistake in docs example
Date
Msg-id 18543-93c721689f9928e8@postgresql.org
Whole thread Raw
Responses Re: BUG #18543: Mistake in docs example
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      18543
Logged by:          Ondřej Navrátil
Email address:      onavratil@monetplus.cz
PostgreSQL version: 16.3
Operating system:   windows
Description:

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

The second example:

```
CREATE TABLE people (
    id bigint GENERATED BY DEFAULT IDENTITY,
    ...,
);
```

is missing **AS**, correct version:

```
CREATE TABLE people (
    id bigint GENERATED BY DEFAULT AS IDENTITY,
    ...,
);
```

... as per syntax here
https://www.postgresql.org/docs/current/sql-createtable.html
```
...
GENERATED { ALWAYS | BY DEFAULT } AS IDENTITY [ ( sequence_options ) ] |
...
```


pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: BUG #18542: Order by expression, that contains column from projection isn't working
Next
From: Aleksander Alekseev
Date:
Subject: Re: libpq: unexpected return code from PQexecParams with a DO INSTEAD rule present