Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
b9cd4c83
Commit
b9cd4c83
authored
Oct 30, 2001
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Grammatical corrections.
parent
96ca8ffe
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
doc/src/sgml/datatype.sgml
doc/src/sgml/datatype.sgml
+11
-6
No files found.
doc/src/sgml/datatype.sgml
View file @
b9cd4c83
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.6
6 2001/10/09 18:45:59 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/datatype.sgml,v 1.6
7 2001/10/30 20:13:44 tgl
Exp $
-->
<chapter id="datatype">
...
...
@@ -623,6 +623,10 @@ NUMERIC
<primary>serial</primary>
</indexterm>
<indexterm zone="datatype-serial">
<primary>bigserial</primary>
</indexterm>
<indexterm zone="datatype-serial">
<primary>serial4</primary>
</indexterm>
...
...
@@ -679,14 +683,14 @@ CREATE TABLE <replaceable class="parameter">tablename</replaceable> (
<para>
The type names <type>serial</type> and <type>serial4</type> are
equivalent: both create <type>integer</type> columns. The type
names <type>bigserial</type> and <type>serial8</type> work
s
just
the same way, except that
it creates
a <type>bigint</type>
column. <type>
serial8
</type> should be used if you anticipate
names <type>bigserial</type> and <type>serial8</type> work just
the same way, except that
they create
a <type>bigint</type>
column. <type>
bigserial
</type> should be used if you anticipate
use of more than 2^31 identifiers over the lifetime of the table.
</para>
<para>
Implicit sequences supporting the <type>serial</type> are
Implicit sequences supporting the <type>serial</type>
types
are
not automatically dropped when a table containing a serial type
is dropped. So, the following commands executed in order will likely fail:
...
...
@@ -697,7 +701,8 @@ CREATE TABLE <replaceable class="parameter">tablename</replaceable> (<replaceabl
</programlisting>
The sequence will remain in the database until explicitly dropped using
<command>DROP SEQUENCE</command>.
<command>DROP SEQUENCE</command>. (This annoyance will probably be
changed in some future release.)
</para>
</sect2>
</sect1>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment