diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-05 15:08:49 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-05-05 15:08:49 +0000 |
commit | ea7896bf5884962ce7c5ec522e166ca7253085b8 (patch) | |
tree | e261da83ae2ccd4cf7b1eb065119ceb4e8374c23 | |
parent | e3ed942e3bbe4afb740ce6fe7338f93e560c0b30 (diff) | |
download | postgresql-ea7896bf5884962ce7c5ec522e166ca7253085b8.tar.gz postgresql-ea7896bf5884962ce7c5ec522e166ca7253085b8.zip |
Provide a real link to CREATE SEQUENCE's reference page in nextval/setval
discussion.
-rw-r--r-- | doc/src/sgml/func.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index a76783849a0..3519fad36e6 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.153 2003/05/01 00:57:05 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/func.sgml,v 1.154 2003/05/05 15:08:49 tgl Exp $ PostgreSQL documentation --> @@ -6143,7 +6143,7 @@ SELECT setval('foo', 42, false); <lineannotation>Next <function>nextval</> wi If a sequence object has been created with default parameters, <function>nextval</function> calls on it will return successive values beginning with 1. Other behaviors can be obtained by using - special parameters in the <command>CREATE SEQUENCE</command> command; + special parameters in the <xref linkend="SQL-CREATESEQUENCE"> command; see its command reference page for more information. </para> |