diff options
author | Tom Lane | 2014-08-18 05:17:49 +0000 |
---|---|---|
committer | Tom Lane | 2014-08-18 05:17:49 +0000 |
commit | 2b475c5946bc8a9beaff3f57b45cc440a78561a1 (patch) | |
tree | 02207a11b61402a9013ffe925b742141bd9788c5 /doc/src | |
parent | e56ec50c1622010c010e1c84bc02ce44285c4f41 (diff) |
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.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_sequence.sgml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml index 70b9f3d110d..b8468b5bb25 100644 --- a/doc/src/sgml/ref/create_sequence.sgml +++ b/doc/src/sgml/ref/create_sequence.sgml @@ -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> |