summaryrefslogtreecommitdiff
path: root/doc/src/sgml/ddl.sgml
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2005-03-13 09:36:31 +0000
committerNeil Conway <neilc@samurai.com>2005-03-13 09:36:31 +0000
commitff02d0a05280e96e0b91b97ec50e98611f9c7598 (patch)
tree430a642c7e87e1585db184183a4f0ce523412ef6 /doc/src/sgml/ddl.sgml
parent0edc2f14e0b5ece995a5ebb7f36ea593d730c4aa (diff)
downloadpostgresql-ff02d0a05280e96e0b91b97ec50e98611f9c7598.tar.gz
Make default_with_oids default to false -- user-created tables will now
no longer include OIDs, unless WITH OIDS is specified or the default_with_oids configuration parameter is enabled. Update the docs accordingly.
Diffstat (limited to 'doc/src/sgml/ddl.sgml')
-rw-r--r--doc/src/sgml/ddl.sgml11
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml
index 2de8888254..b0d413bbea 100644
--- a/doc/src/sgml/ddl.sgml
+++ b/doc/src/sgml/ddl.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.39 2005/01/22 22:56:35 momjian Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/ddl.sgml,v 1.40 2005/03/13 09:36:30 neilc Exp $ -->
<chapter id="ddl">
<title>Data Definition</title>
@@ -868,11 +868,10 @@ CREATE TABLE order_items (
<primary>OID</primary>
<secondary>column</secondary>
</indexterm>
- The object identifier (object ID) of a row. This is a serial
- number that is automatically added by
- <productname>PostgreSQL</productname> to all table rows (unless
- the table was created using <literal>WITHOUT OIDS</literal>, in which
- case this column is not present). This column is of type
+ The object identifier (object ID) of a row. This column is only
+ present if the table was created using <literal>WITH
+ OIDS</literal>, or if the <xref linkend="guc-default-with-oids">
+ configuration variable was enabled. This column is of type
<type>oid</type> (same name as the column); see <xref
linkend="datatype-oid"> for more information about the type.
</para>