]> granicus.if.org Git - postgresql/commitdiff
Fix obsolete mention of non-int64 support in CREATE SEQUENCE documentation.
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 18 Aug 2014 05:17:49 +0000 (01:17 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 18 Aug 2014 05:18:24 +0000 (01:18 -0400)
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

index 318718e1a89916f7eb4c72bedf67763df71f3320..c49e5ce193e2ee7175377312a9b149b0a4f43ae5 100644 (file)
@@ -224,10 +224,7 @@ SELECT * FROM <replaceable>name</replaceable>;
   <para>
    Sequences are based on <type>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 <type>integer</>
-   arithmetic (range -2147483648 to +2147483647).
+   (-9223372036854775808 to 9223372036854775807).
   </para>
 
   <para>