From: Bruce Momjian Date: Thu, 1 Feb 2007 00:34:03 +0000 (+0000) Subject: Update CREATE SEQUENCE documentation to show the same sequence being X-Git-Tag: REL8_3_BETA1~1363 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b3687889c486d3a808cad0b46d6bf6c71d943d1c;p=thirdparty%2Fpostgresql.git Update CREATE SEQUENCE documentation to show the same sequence being created and increments. The old docs created the sequence, then showed a nextval() of 114. --- diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml index 61bee148bfa..e5afabf12ae 100644 --- a/doc/src/sgml/ref/create_sequence.sgml +++ b/doc/src/sgml/ref/create_sequence.sgml @@ -1,5 +1,5 @@ @@ -288,7 +288,18 @@ SELECT nextval('serial'); nextval --------- - 114 + 101 + + + + + Select the next number from this sequence: + +SELECT nextval('serial'); + + nextval +--------- + 102