From 823be6b7fd7898de0d7d17b9f371c4505e998cd2 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 18 Aug 2014 01:17:49 -0400 Subject: [PATCH] Fix obsolete mention of non-int64 support in CREATE SEQUENCE documentation. The old text explained what happened if we didn't have working int64 arithmetic. Since that case has been explicitly rejected by configure since 8.4.3, documenting it in the 9.x branches can only produce confusion. --- doc/src/sgml/ref/create_sequence.sgml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml index 318718e1a8..c49e5ce193 100644 --- a/doc/src/sgml/ref/create_sequence.sgml +++ b/doc/src/sgml/ref/create_sequence.sgml @@ -224,10 +224,7 @@ SELECT * FROM name; Sequences are based on bigint arithmetic, so the range cannot exceed the range of an eight-byte integer - (-9223372036854775808 to 9223372036854775807). On some older - platforms, there might be no compiler support for eight-byte - integers, in which case sequences use regular integer - arithmetic (range -2147483648 to +2147483647). + (-9223372036854775808 to 9223372036854775807). -- 2.40.0