File tree Expand file tree Collapse file tree 5 files changed +18
-18
lines changed Expand file tree Collapse file tree 5 files changed +18
-18
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.188 2005/06/27 02:04:24 neilc Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.189 2005/08/14 22:19:49 petere Exp $
3
3
-->
4
4
5
5
<chapter id="libpq">
@@ -890,10 +890,10 @@ Parameters reported as of the current release include
890
890
<literal>DateStyle</>,
891
891
<literal>TimeZone</>,
892
892
<literal>integer_datetimes</>, and
893
- <literal>standard_compliant_strings </>.
893
+ <literal>standard_conforming_strings </>.
894
894
(<literal>server_encoding</>, <literal>TimeZone</>, and
895
895
<literal>integer_datetimes</> were not reported by releases before 8.0;
896
- <literal>standard_compliant_strings </> was not reported by releases
896
+ <literal>standard_conforming_strings </> was not reported by releases
897
897
before 8.1.)
898
898
Note that
899
899
<literal>server_version</>,
@@ -917,7 +917,7 @@ in a numeric form that is much easier to compare against.
917
917
</para>
918
918
919
919
<para>
920
- If no value for <literal>standard_compliant_strings </> is reported,
920
+ If no value for <literal>standard_conforming_strings </> is reported,
921
921
applications may assume it is <literal>false</>, that is, backslashes
922
922
are treated as escapes in string literals. Also, the presence of this
923
923
parameter may be taken as an indication that the escape string syntax
Original file line number Diff line number Diff line change 1
- <!-- $PostgreSQL: pgsql/doc/src/sgml/protocol.sgml,v 1.61 2005/06/27 02:04:24 neilc Exp $ -->
1
+ <!-- $PostgreSQL: pgsql/doc/src/sgml/protocol.sgml,v 1.62 2005/08/14 22:19:49 petere Exp $ -->
2
2
3
3
<chapter id="protocol">
4
4
<title>Frontend/Backend Protocol</title>
1061
1061
<literal>DateStyle</>,
1062
1062
<literal>TimeZone</>,
1063
1063
<literal>integer_datetimes</>, and
1064
- <literal>standard_compliant_strings </>.
1064
+ <literal>standard_conforming_strings </>.
1065
1065
(<literal>server_encoding</>, <literal>TimeZone</>, and
1066
1066
<literal>integer_datetimes</> were not reported by releases before 8.0;
1067
- <literal>standard_compliant_strings </> was not reported by releases
1067
+ <literal>standard_conforming_strings </> was not reported by releases
1068
1068
before 8.1.)
1069
1069
Note that
1070
1070
<literal>server_version</>,
Original file line number Diff line number Diff line change 1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.344 2005/08/11 21:11:42 tgl Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.345 2005/08/14 22:19:49 petere Exp $
3
3
-->
4
4
5
5
<chapter Id="runtime">
@@ -4089,7 +4089,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
4089
4089
Escape string syntax (<literal>E'...'</>) should be used for
4090
4090
escapes, because in future versions of
4091
4091
<productname>PostgreSQL</productname> ordinary strings will have
4092
- the standard-compliant behavior of treating backslashes
4092
+ the standard-conforming behavior of treating backslashes
4093
4093
literally.
4094
4094
</para>
4095
4095
</listitem>
@@ -4303,11 +4303,11 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
4303
4303
</listitem>
4304
4304
</varlistentry>
4305
4305
4306
- <varlistentry id="guc-standard-compliant -strings" xreflabel="standard_compliant_strings ">
4307
- <term><varname>standard_compliant_strings </varname> (<type>boolean</type>)</term>
4306
+ <varlistentry id="guc-standard-conforming -strings" xreflabel="standard_conforming_strings ">
4307
+ <term><varname>standard_conforming_strings </varname> (<type>boolean</type>)</term>
4308
4308
<indexterm><primary>strings</><secondary>escape</></>
4309
4309
<indexterm>
4310
- <primary><varname>standard_compliant_strings </> configuration parameter</primary>
4310
+ <primary><varname>standard_conforming_strings </> configuration parameter</primary>
4311
4311
</indexterm>
4312
4312
<listitem>
4313
4313
<para>
Original file line number Diff line number Diff line change 1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.102 2005/06/26 19:16:05 tgl Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/syntax.sgml,v 1.103 2005/08/14 22: 19:50 petere Exp $
3
3
-->
4
4
5
5
<chapter id="sql-syntax">
@@ -274,7 +274,7 @@ UPDATE "my_table" SET "a" = 5;
274
274
While ordinary strings now support C-style backslash escapes,
275
275
future versions will generate warnings for such usage and
276
276
eventually treat backslashes as literal characters to be
277
- standard-compliant . The proper way to specify escape processing is
277
+ standard-conforming . The proper way to specify escape processing is
278
278
to use the escape string syntax to indicate that escape
279
279
processing is desired. Escape string syntax is specified by writing
280
280
the letter <literal>E</literal> (upper or lower case) just before
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.281 2005/08/11 21:11:47 tgl Exp $
13
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.282 2005/08/14 22:19:50 petere Exp $
14
14
*
15
15
*--------------------------------------------------------------------
16
16
*/
@@ -202,7 +202,7 @@ static int max_index_keys;
202
202
static int max_identifier_length ;
203
203
static int block_size ;
204
204
static bool integer_datetimes ;
205
- static bool standard_compliant_strings ;
205
+ static bool standard_conforming_strings ;
206
206
207
207
/* should be static, but commands/variable.c needs to get at these */
208
208
char * role_string ;
@@ -930,12 +930,12 @@ static struct config_bool ConfigureNamesBool[] =
930
930
},
931
931
932
932
{
933
- {"standard_compliant_strings " , PGC_INTERNAL , PRESET_OPTIONS ,
933
+ {"standard_conforming_strings " , PGC_INTERNAL , PRESET_OPTIONS ,
934
934
gettext_noop ("'...' strings treat backslashes literally." ),
935
935
NULL ,
936
936
GUC_REPORT | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
937
937
},
938
- & standard_compliant_strings ,
938
+ & standard_conforming_strings ,
939
939
false, NULL , NULL
940
940
},
941
941
You can’t perform that action at this time.
0 commit comments