1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-08 11:42:09 +03:00

Mark the TimeZone parameter as GUC_REPORT, so that JDBC can find out

when it changes.  Per request from Kris Jurka.
This commit is contained in:
Tom Lane
2004-12-20 18:15:07 +00:00
parent 80855ba8ca
commit b5ae0d69da
3 changed files with 13 additions and 10 deletions

View File

@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.250 2004/11/24 19:51:03 tgl Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.251 2004/12/20 18:15:07 tgl Exp $
*
*--------------------------------------------------------------------
*/
@ -1728,7 +1728,8 @@ static struct config_string ConfigureNamesString[] =
{
{"TimeZone", PGC_USERSET, CLIENT_CONN_LOCALE,
gettext_noop("Sets the time zone for displaying and interpreting time stamps."),
NULL
NULL,
GUC_REPORT
},
&timezone_string,
"UNKNOWN", assign_timezone, show_timezone