summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-12-01 03:55:21 +0000
committerBruce Momjian <bruce@momjian.us>2003-12-01 03:55:21 +0000
commit64e5a85625731af150403d8346e6bb0f2c7acde2 (patch)
tree0a0c229d5fb0bc72cd4aaea861ac38073710cdc9
parentb8f40ced2f7daebb13a3c9ab9aece5a969e2c28a (diff)
downloadpostgresql-64e5a85625731af150403d8346e6bb0f2c7acde2.tar.gz
Seems there are three GUC variables that are defined as "Shows ..."
while you can actually set them with SET. This applied patch changes the wording from "Show" to "Set".
-rw-r--r--src/backend/utils/misc/guc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index 1f88c74ccf..030dd9033c 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.172 2003/11/29 19:52:03 pgsql Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.173 2003/12/01 03:55:21 momjian Exp $
*
*--------------------------------------------------------------------
*/
@@ -808,7 +808,7 @@ static struct config_bool ConfigureNamesBool[] =
},
{
{"transaction_read_only", PGC_USERSET, CLIENT_CONN_STATEMENT,
- gettext_noop("Shows the current transaction's read-only status."),
+ gettext_noop("Sets the current transaction's read-only status."),
NULL,
GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
},
@@ -1532,7 +1532,7 @@ static struct config_string ConfigureNamesString[] =
{
/* Not for general use --- used by SET SESSION AUTHORIZATION */
{"session_authorization", PGC_USERSET, UNGROUPED,
- gettext_noop("Shows the session user name."),
+ gettext_noop("Sets the session user name."),
NULL,
GUC_REPORT | GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
},
@@ -1572,7 +1572,7 @@ static struct config_string ConfigureNamesString[] =
{
{"transaction_isolation", PGC_USERSET, CLIENT_CONN_STATEMENT,
- gettext_noop("Shows the current transaction's isolation level."),
+ gettext_noop("Sets the current transaction's isolation level."),
NULL,
GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
},