From: | Aizaz Ahmed <aahmed(at)redhat(dot)com> |
---|---|
To: | pgsql-patches(at)postgresql(dot)org |
Cc: | aahmed(at)redhat(dot)com, tgl(at)redhat(dot)com, Fernando Nasser <fnasser(at)redhat(dot)com> |
Subject: | Patch for listing runtime option details through server executable (pg_guc) |
Date: | 2003-06-30 20:43:13 |
Message-ID: | 1057005791.16215.62.camel@toffee.toronto.redhat.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-patches |
The attached patch adds the --long-help option to the server executable.
This option displays all the available runtime options for that
particular server version, along with Max, Min and Reset values if
applicable and a description. It also groups the runtime options
together in accordance with the documentation.
--long-help -h provides details, (including):
With no options specified, it will output all available runtime options
in human friendly format, grouped by category and sorted by name.
Usage:
Usage for --long-help option: [-g <group>] [-h] [-H] [-G] [-l]
[string]
General Options:
[string] All options with names that match this string
-g GROUP All options in categories that match GROUP
-G Do not sort output, by group or name
Output Options:
-m Machine friendly format. All fields are tab separated.
-M Same as m, except header with column names is suppressed
-l Prints list of all currently defined groups \ subgroups
-h Prints this help message
The human readable option can be used to help manually configure the
postgresql.conf file, while the machine readable format can be used by
server side utilities to help configure GUC variables. (for example a
GUI, for which this was created)
Thanks,
Aizaz Ahmed
Attachments
-----------
patch file: pg_guc.patch,
new files: src/include/utils/guc_vars.h, /src/include/utils/pg_guc.h,
src/backend/utils/misc/pg_guc.c
To be applied to 7.4 devel.
Attachment | Content-Type | Size |
---|---|---|
pg_guc.patch | text/plain | 58.6 KB |
pg_guc.c | text/x-c | 11.6 KB |
guc_vars.h | text/x-c-header | 5.0 KB |
pg_guc.h | text/x-c-header | 4.7 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2003-06-30 20:50:21 | Re: [HACKERS] Missing array support |
Previous Message | Joe Conway | 2003-06-30 20:42:22 | Re: [HACKERS] Missing array support |