From 5d8beac8bee344bdf4b05a63b93f06e05d999b39 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 12 Jun 2017 16:20:12 -0400 Subject: [PATCH] doc: Update information_schema documentation for identity columns This was apparently forgotten in the original patch. --- doc/src/sgml/information_schema.sgml | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) 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. + -- 2.39.5