diff options
author | Tom Lane | 2005-04-13 18:54:57 +0000 |
---|---|---|
committer | Tom Lane | 2005-04-13 18:54:57 +0000 |
commit | 2193a856a229026673cbc56310cd0bddf7b5ea25 (patch) | |
tree | 85a5c8c9c8dc0b7135f02e823dc3749d61eb8325 /doc/src | |
parent | 2fdf9e0be6b474e38e516007b5ac5274ecef514d (diff) |
Simplify initdb-time assignment of OIDs as I proposed yesterday, and
avoid encroaching on the 'user' range of OIDs by allowing automatic
OID assignment to use values below 16k until we reach normal operation.
initdb not forced since this doesn't make any incompatible change;
however a lot of stuff will have different OIDs after your next initdb.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/bki.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/bki.sgml b/doc/src/sgml/bki.sgml index 23fb02a8cfc..7aec23130d6 100644 --- a/doc/src/sgml/bki.sgml +++ b/doc/src/sgml/bki.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/bki.sgml,v 1.14 2005/03/29 19:44:22 tgl Exp $ +$PostgreSQL: pgsql/doc/src/sgml/bki.sgml,v 1.15 2005/04/13 18:54:55 tgl Exp $ --> <chapter id="bki"> @@ -167,8 +167,8 @@ $PostgreSQL: pgsql/doc/src/sgml/bki.sgml,v 1.14 2005/03/29 19:44:22 tgl Exp $ values and <replaceable class="parameter">oid_value</replaceable> for its OID. If <replaceable class="parameter">oid_value</replaceable> is zero - (0) or the clause is omitted, then the next available OID is - used. + (0) or the clause is omitted, and the table has OIDs, then the + next available OID is assigned. </para> <para> |