diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2021-11-02 12:12:02 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2021-11-02 12:12:02 -0400 |
commit | af8c580e5cf32bb85dde70083a260c93a1f783eb (patch) | |
tree | 87dc7c38d5b080f32d312b390b9282a232a45b81 /doc/src/sgml/ref/create_sequence.sgml | |
parent | 65c6cab1365ac33b11a49a2a193f6b3f9c53e487 (diff) | |
download | postgresql-af8c580e5cf32bb85dde70083a260c93a1f783eb.tar.gz postgresql-af8c580e5cf32bb85dde70083a260c93a1f783eb.zip |
Doc: be more precise about conflicts between relation names.
Use verbiage like "The name of the table must be distinct from the name
of any other relation (table, sequence, index, view, materialized view,
or foreign table) in the same schema." in the reference pages for all
those object types. The main change here is to mention materialized
views explicitly; although a couple of these pages failed to say
anything at all about name conflicts.
Per suggestion from Daniel Westermann.
Discussion: https://postgr.es/m/ZR0P278MB0920D0946509233459AF0DEFD2889@ZR0P278MB0920.CHEP278.PROD.OUTLOOK.COM
Diffstat (limited to 'doc/src/sgml/ref/create_sequence.sgml')
-rw-r--r-- | doc/src/sgml/ref/create_sequence.sgml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml index e4085804a4d..20bdbc002fa 100644 --- a/doc/src/sgml/ref/create_sequence.sgml +++ b/doc/src/sgml/ref/create_sequence.sgml @@ -46,8 +46,9 @@ CREATE [ TEMPORARY | TEMP ] SEQUENCE [ IF NOT EXISTS ] <replaceable class="param specified schema. Otherwise it is created in the current schema. Temporary sequences exist in a special schema, so a schema name cannot be given when creating a temporary sequence. - The sequence name must be distinct from the name of any other sequence, - table, index, view, or foreign table in the same schema. + The sequence name must be distinct from the name of any other relation + (table, sequence, index, view, materialized view, or foreign table) in + the same schema. </para> <para> |