File tree Expand file tree Collapse file tree 3 files changed +13
-10
lines changed Expand file tree Collapse file tree 3 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.171 2004/12/13 18:05:08 petere Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.172 2004/12/20 18:15:05 tgl Exp $
3
3
-->
4
4
5
5
<chapter id="libpq">
@@ -860,10 +860,11 @@ Parameters reported as of the current release include
860
860
<literal>client_encoding</>,
861
861
<literal>is_superuser</>,
862
862
<literal>session_authorization</>,
863
- <literal>DateStyle</>, and
863
+ <literal>DateStyle</>,
864
+ <literal>TimeZone</>, and
864
865
<literal>integer_datetimes</>.
865
- (<literal>server_encoding</> and <literal>integer_datetimes </> were not
866
- reported by releases before 8.0.)
866
+ (<literal>server_encoding</>, <literal>TimeZone </>, and
867
+ <literal>integer_datetimes</> were not reported by releases before 8.0.)
867
868
Note that
868
869
<literal>server_version</>,
869
870
<literal>server_encoding</> and
Original file line number Diff line number Diff line change 1
- <!-- $PostgreSQL: pgsql/doc/src/sgml/protocol.sgml,v 1.56 2004/12/13 18:05:08 petere Exp $ -->
1
+ <!-- $PostgreSQL: pgsql/doc/src/sgml/protocol.sgml,v 1.57 2004/12/20 18:15:05 tgl Exp $ -->
2
2
3
3
<chapter id="protocol">
4
4
<title>Frontend/Backend Protocol</title>
1051
1051
<literal>client_encoding</>,
1052
1052
<literal>is_superuser</>,
1053
1053
<literal>session_authorization</>,
1054
- <literal>DateStyle</>, and
1054
+ <literal>DateStyle</>,
1055
+ <literal>TimeZone</>, and
1055
1056
<literal>integer_datetimes</>.
1056
- (<literal>server_encoding</> and <literal>integer_datetimes </> were not
1057
- reported by releases before 8.0.)
1057
+ (<literal>server_encoding</>, <literal>TimeZone </>, and
1058
+ <literal>integer_datetimes</> were not reported by releases before 8.0.)
1058
1059
Note that
1059
1060
<literal>server_version</>,
1060
1061
<literal>server_encoding</> and
Original file line number Diff line number Diff line change 10
10
* Written by Peter Eisentraut <peter_e@gmx.net>.
11
11
*
12
12
* IDENTIFICATION
13
- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.250 2004/11/24 19:51:03 tgl Exp $
13
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.251 2004/12/20 18:15:07 tgl Exp $
14
14
*
15
15
*--------------------------------------------------------------------
16
16
*/
@@ -1728,7 +1728,8 @@ static struct config_string ConfigureNamesString[] =
1728
1728
{
1729
1729
{"TimeZone" , PGC_USERSET , CLIENT_CONN_LOCALE ,
1730
1730
gettext_noop ("Sets the time zone for displaying and interpreting time stamps." ),
1731
- NULL
1731
+ NULL ,
1732
+ GUC_REPORT
1732
1733
},
1733
1734
& timezone_string ,
1734
1735
"UNKNOWN" , assign_timezone , show_timezone
You can’t perform that action at this time.
0 commit comments