Re: pgsql: Make all command-line options of postmaster and postgres the

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Peter Eisentraut <peter_e(at)gmx(dot)net>
Cc: pgsql-committers(at)postgresql(dot)org
Subject: Re: pgsql: Make all command-line options of postmaster and postgres the
Date: 2006-01-06 01:29:00
Message-ID: 10471.1136510940@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

+ {
+ {"allow_system_table_mods", PGC_BACKEND, DEVELOPER_OPTIONS,
+ gettext_noop("Allows modifications of the structure of system tables."),
+ NULL,
+ GUC_NOT_IN_SAMPLE
+ },
+ &allowSystemTableMods,
+ false, NULL, NULL
+ },

Don't we need something to prevent non-superusers from setting this?
IIRC, PGC_BACKEND vars can be set via PGOPTIONS.

regards, tom lane

In response to

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2006-01-06 01:35:09 pgsql: Fix broken markup.
Previous Message Tom Lane 2006-01-06 00:16:09 pgsql: Convert Assert checking for empty page into a regular test and