CREATE UNIQUE INDEX name ON table (column [, ...]) [ NULLS [ NOT ] DISTINCT ]; - Mailing list pgsql-docs

From PG Doc comments form
Subject CREATE UNIQUE INDEX name ON table (column [, ...]) [ NULLS [ NOT ] DISTINCT ];
Date
Msg-id 173123859233.708.15625173411353921889@wrigleys.postgresql.org
Whole thread Raw
Responses Re: CREATE UNIQUE INDEX name ON table (column [, ...]) [ NULLS [ NOT ] DISTINCT ];
List pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/17/indexes-unique.html
Description:

This says it works from 12 onwards but actually from 15 onwards
Prior to 15 unique partial indexes needed creating, e.g. (parent_ID, NAME)
where parent_ID is not null and (NAME) where parent_id is null

pgsql-docs by date:

Previous
From: PG Doc comments form
Date:
Subject: Improved security for https://www.postgresql.org/docs/current/install-make.html
Next
From: PG Doc comments form
Date:
Subject: Documentation error in tutorial page for Window Functions