Commit ccba1d0c authored by Tom Lane's avatar Tom Lane

Allow Trace_lock_oidmin to be set to zero; this is a reasonable

representation of not wanting tracing to be limited by object OID.
parent e1662cb6
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>. * Written by Peter Eisentraut <peter_e@gmx.net>.
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.252 2005/01/01 05:43:08 momjian Exp $ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.253 2005/03/01 20:23:34 tgl Exp $
* *
*-------------------------------------------------------------------- *--------------------------------------------------------------------
*/ */
...@@ -1080,7 +1080,7 @@ static struct config_int ConfigureNamesInt[] = ...@@ -1080,7 +1080,7 @@ static struct config_int ConfigureNamesInt[] =
GUC_NOT_IN_SAMPLE GUC_NOT_IN_SAMPLE
}, },
&Trace_lock_oidmin, &Trace_lock_oidmin,
BootstrapObjectIdData, 1, INT_MAX, NULL, NULL BootstrapObjectIdData, 0, INT_MAX, NULL, NULL
}, },
{ {
{"trace_lock_table", PGC_SUSET, DEVELOPER_OPTIONS, {"trace_lock_table", PGC_SUSET, DEVELOPER_OPTIONS,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment