Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 64f0bc0

Browse files
committed
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
1 parent 2a28083 commit 64f0bc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/sgml/ref/create_sequence.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ SELECT * FROM <replaceable>name</replaceable>;
288288
session A might reserve values 1..10 and return
289289
<function>nextval</function>=1, then session B might reserve values
290290
11..20 and return <function>nextval</function>=11 before session A
291-
has generated <literal>nextval</literal>=2. Thus, with a
291+
has generated <function>nextval</function>=2. Thus, with a
292292
<replaceable class="parameter">cache</replaceable> setting of one
293293
it is safe to assume that <function>nextval</> values are generated
294294
sequentially; with a <replaceable

0 commit comments

Comments
 (0)