diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-01-16 09:42:40 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-01-16 09:42:40 +0100 |
commit | a37bb7c13995b834095d9d064cad1023a6f99b10 (patch) | |
tree | 1a5165a8492bcd4c6dac7d910265dc8b8bba1d22 /doc/src/sgml/datatype.sgml | |
parent | d22d98c341713a260c1d821a62e83c19e27defa0 (diff) | |
download | postgresql-a37bb7c13995b834095d9d064cad1023a6f99b10.tar.gz postgresql-a37bb7c13995b834095d9d064cad1023a6f99b10.zip |
doc: Add Identity Column section under Data Definition chapter
This seems to be missing since identity column support was added. Add
the same. This gives a place to document various pieces of
information in one place that are currently distributed over several
command reference pages or just not documented (e.g., inheritance
behavior).
Author: Ashutosh Bapat <ashutosh.bapat.oss@gmail.com>
Author: Peter Eisentraut <peter@eisentraut.org>
Discussion: https://www.postgresql.org/message-id/flat/CAExHW5uOykuTC+C6R1yDSp=o8Q83jr8xJdZxgPkxfZ1Ue5RRGg@mail.gmail.com
Diffstat (limited to 'doc/src/sgml/datatype.sgml')
-rw-r--r-- | doc/src/sgml/datatype.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/datatype.sgml b/doc/src/sgml/datatype.sgml index b3a92b9aabc..66510ee0315 100644 --- a/doc/src/sgml/datatype.sgml +++ b/doc/src/sgml/datatype.sgml @@ -955,7 +955,7 @@ FROM generate_series(-3.5, 3.5, 1) as x; <para> This section describes a PostgreSQL-specific way to create an autoincrementing column. Another way is to use the SQL-standard - identity column feature, described at <xref linkend="sql-createtable"/>. + identity column feature, described at <xref linkend="ddl-identity-columns"/>. </para> </note> |