diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2022-08-16 09:20:14 +0900 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2022-08-16 09:20:14 +0900 |
commit | f4c32cdd1cc3e759d8e300664ec553a16bcb6c37 (patch) | |
tree | 30ec884137a4a7a2059d7c2083f1e07be22c3f2b | |
parent | 3eae0cbf7e70db885c4ec37e0863022d3ad589d4 (diff) | |
download | postgresql-f4c32cdd1cc3e759d8e300664ec553a16bcb6c37.tar.gz postgresql-f4c32cdd1cc3e759d8e300664ec553a16bcb6c37.zip |
doc: fix wrong tag used in create sequence manual.
In ref/create_sequence.sgml <literal> tag was used for nextval function name.
This should have been <function> tag.
Author: Noboru Saito
Discussion: https://postgr.es/m/CAAM3qnJTDFFfRf5JHJ4AYrNcqXgMmj0pbH0%2Bvm%3DYva%2BpJyGymA%40mail.gmail.com
Backpatch-through: 10
-rw-r--r-- | doc/src/sgml/ref/create_sequence.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml index a84aa5bf56a..34e9084b5cc 100644 --- a/doc/src/sgml/ref/create_sequence.sgml +++ b/doc/src/sgml/ref/create_sequence.sgml @@ -310,7 +310,7 @@ SELECT * FROM <replaceable>name</replaceable>; session A might reserve values 1..10 and return <function>nextval</function>=1, then session B might reserve values 11..20 and return <function>nextval</function>=11 before session A - has generated <literal>nextval</literal>=2. Thus, with a + has generated <function>nextval</function>=2. Thus, with a <replaceable class="parameter">cache</replaceable> setting of one it is safe to assume that <function>nextval</function> values are generated sequentially; with a <replaceable |