From: Peter Eisentraut Date: Mon, 12 Jun 2017 20:20:12 +0000 (-0400) Subject: doc: Update information_schema documentation for identity columns X-Git-Tag: REL_10_BETA2~177 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5d8beac8bee344bdf4b05a63b93f06e05d999b39;p=thirdparty%2Fpostgresql.git doc: Update information_schema documentation for identity columns This was apparently forgotten in the original patch. --- diff --git a/doc/src/sgml/information_schema.sgml b/doc/src/sgml/information_schema.sgml index 02f79274363..b85849b2588 100644 --- a/doc/src/sgml/information_schema.sgml +++ b/doc/src/sgml/information_schema.sgml @@ -1602,31 +1602,47 @@ identity_start character_data - Applies to a feature not available in PostgreSQL + + If the column is an identity column, then the start value of the + internal sequence, else null. + identity_increment character_data - Applies to a feature not available in PostgreSQL + + If the column is an identity column, then the increment of the internal + sequence, else null. + identity_maximum character_data - Applies to a feature not available in PostgreSQL + + If the column is an identity column, then the maximum value of the + internal sequence, else null. + identity_minimum character_data - Applies to a feature not available in PostgreSQL + + If the column is an identity column, then the minimum value of the + internal sequence, else null. + identity_cycle yes_or_no - Applies to a feature not available in PostgreSQL + + If the column is an identity column, then YES if the + internal sequence cycles or NO if it does not; + otherwise null. +