From dc9ed21a4f4fc1da39c70935fc3dcd298b851542 Mon Sep 17 00:00:00 2001 From: Tatsuo Ishii Date: Tue, 16 Aug 2022 09:28:19 +0900 Subject: [PATCH] doc: fix wrong tag used in create sequence manual. In ref/create_sequence.sgml tag was used for nextval function name. This should have been tag. Author: Noboru Saito Discussion: https://postgr.es/m/CAAM3qnJTDFFfRf5JHJ4AYrNcqXgMmj0pbH0%2Bvm%3DYva%2BpJyGymA%40mail.gmail.com Backpatch-through: 10 --- doc/src/sgml/ref/create_sequence.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml index e4085804a4..7dff75fd9d 100644 --- a/doc/src/sgml/ref/create_sequence.sgml +++ b/doc/src/sgml/ref/create_sequence.sgml @@ -288,7 +288,7 @@ SELECT * FROM name; session A might reserve values 1..10 and return nextval=1, then session B might reserve values 11..20 and return nextval=11 before session A - has generated nextval=2. Thus, with a + has generated nextval=2. Thus, with a cache setting of one it is safe to assume that nextval values are generated sequentially; with a