create table explicitly mention that unique|primary key constraint will create an - Mailing list pgsql-docs

From jian he
Subject create table explicitly mention that unique|primary key constraint will create an
Date
Msg-id CACJufxFG682tYcP9aH_F-jrqq5End8MHZR77zcp1=DUrEsSu1Q@mail.gmail.com
Whole thread Raw
Responses Re: create table explicitly mention that unique|primary key constraint will create an
List pgsql-docs
Hi. minor doc issue.
create table s1(a int, constraint s2 PRIMARY key (a));
create table s2(a int);
ERROR:  relation "s2" already exists

https://www.postgresql.org/docs/current/sql-createtable.html#SQL-CREATETABLE-PARMS-UNIQUE
maybe for the following 2 sentence
"Adding a unique constraint will automatically create a unique btree
index on the column or group of columns used in the constraint."
"Adding a PRIMARY KEY constraint will automatically create a unique
btree index on the column or group of columns used in the constraint."

maybe we can mention that: the unique btree index name will be the
constraint name.
also is "a unique" or "an unique"?
I personally thought this part is obscure.



pgsql-docs by date:

Previous
From: PG Doc comments form
Date:
Subject: Table-space documentation
Next
From: Laurenz Albe
Date:
Subject: Re: create table explicitly mention that unique|primary key constraint will create an