File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.50 2006/03/06 19:49:19 momjian Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.51 2006/03/07 02:54:23 momjian Exp $
3
3
-->
4
4
<chapter Id="runtime-config">
5
5
<title>Server Configuration</title>
@@ -3733,7 +3733,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
3733
3733
<para>
3734
3734
When on, a warning is issued if a backslash (<literal>\</>)
3735
3735
appears in an ordinary string literal (<literal>'...'</>
3736
- syntax). The default is <literal>off </>.
3736
+ syntax). The default is <literal>on </>.
3737
3737
</para>
3738
3738
<para>
3739
3739
Escape string syntax (<literal>E'...'</>) should be used for
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.313 2006/03/06 19:49:20 momjian Exp $
13
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.314 2006/03/07 02:54:23 momjian Exp $
14
14
*
15
15
*--------------------------------------------------------------------
16
16
*/
@@ -969,7 +969,7 @@ static struct config_bool ConfigureNamesBool[] =
969
969
NULL
970
970
},
971
971
& escape_string_warning ,
972
- false , NULL , NULL
972
+ true , NULL , NULL
973
973
},
974
974
975
975
{
You can’t perform that action at this time.
0 commit comments