Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 64e5a85

Browse files
committed
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".
1 parent b8f40ce commit 64e5a85

File tree

1 file changed

+4
-4
lines changed
  • src/backend/utils/misc

1 file changed

+4
-4
lines changed

src/backend/utils/misc/guc.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Written by Peter Eisentraut <peter_e@gmx.net>.
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.172 2003/11/29 19:52:03 pgsql Exp $
13+
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.173 2003/12/01 03:55:21 momjian Exp $
1414
*
1515
*--------------------------------------------------------------------
1616
*/
@@ -808,7 +808,7 @@ static struct config_bool ConfigureNamesBool[] =
808808
},
809809
{
810810
{"transaction_read_only", PGC_USERSET, CLIENT_CONN_STATEMENT,
811-
gettext_noop("Shows the current transaction's read-only status."),
811+
gettext_noop("Sets the current transaction's read-only status."),
812812
NULL,
813813
GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
814814
},
@@ -1532,7 +1532,7 @@ static struct config_string ConfigureNamesString[] =
15321532
{
15331533
/* Not for general use --- used by SET SESSION AUTHORIZATION */
15341534
{"session_authorization", PGC_USERSET, UNGROUPED,
1535-
gettext_noop("Shows the session user name."),
1535+
gettext_noop("Sets the session user name."),
15361536
NULL,
15371537
GUC_REPORT | GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
15381538
},
@@ -1572,7 +1572,7 @@ static struct config_string ConfigureNamesString[] =
15721572

15731573
{
15741574
{"transaction_isolation", PGC_USERSET, CLIENT_CONN_STATEMENT,
1575-
gettext_noop("Shows the current transaction's isolation level."),
1575+
gettext_noop("Sets the current transaction's isolation level."),
15761576
NULL,
15771577
GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
15781578
},

0 commit comments

Comments
 (0)