mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
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.
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
* Written by Peter Eisentraut <peter_e@gmx.net>.
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.258 2005/04/08 00:59:59 neilc Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.259 2005/04/13 18:54:56 tgl Exp $
|
||||
*
|
||||
*--------------------------------------------------------------------
|
||||
*/
|
||||
@ -1090,7 +1090,7 @@ static struct config_int ConfigureNamesInt[] =
|
||||
GUC_NOT_IN_SAMPLE
|
||||
},
|
||||
&Trace_lock_oidmin,
|
||||
BootstrapObjectIdData, 0, INT_MAX, NULL, NULL
|
||||
FirstNormalObjectId, 0, INT_MAX, NULL, NULL
|
||||
},
|
||||
{
|
||||
{"trace_lock_table", PGC_SUSET, DEVELOPER_OPTIONS,
|
||||
|
Reference in New Issue
Block a user