From e59ad5fbb6d71b43a6c4e50875fda56e88527532 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 6 Oct 2008 13:59:37 +0000 Subject: [PATCH] Editorial improvements to description of pg_settings view. --- doc/src/sgml/catalogs.sgml | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 77ccf8e3fc..ae6dfbd8a5 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1,4 +1,4 @@ - + @@ -6352,7 +6352,8 @@ The view pg_settings provides access to run-time parameters of the server. It is essentially an alternative - interface to the SHOW and SET commands. + interface to the + and commands. It also provides access to some facts about each parameter that are not directly available from SHOW, such as minimum and maximum values. @@ -6398,7 +6399,7 @@ extra_desc text - Additional, more detailed, information about the parameter + Additional, more detailed, description of the parameter context @@ -6432,7 +6433,7 @@ enumvals text - Allowed values in enum parameters (NULL for non-enum + Allowed values of an enum parameter (NULL for non-enum values) @@ -6444,21 +6445,23 @@ reset_val text - Default run-time session value for the parameter that it will - revert to if RESET + Value that RESET would reset the parameter to + in the current session sourcefile text - Input file the current value was set from (NULL for values set in - sources other than configuration files). Helpful when using - configuration include directives. + Configuration file the current value was set in (NULL for + values set from sources other than configuration files, or when + examined by a non-superuser). + Helpful when using configuration include directives sourceline - text - Line number within the sourcefile the current value was set - from (NULL for values set in sources other than configuration files) + integer + Line number within the configuration file the current value was + set at (NULL for values set from sources other than configuration files, + or when examined by a non-superuser)