diff options
author | Bruce Momjian | 2006-03-06 19:49:20 +0000 |
---|---|---|
committer | Bruce Momjian | 2006-03-06 19:49:20 +0000 |
commit | 19c21d115d221d9738afad142f2886dfd3cc40de (patch) | |
tree | f5a4a3f11ae8a6efe639a8717f5fa2c267dbd7b0 /src/include | |
parent | a9c1047ebdde533949fd8096c8ac1eca5e821292 (diff) |
Enable standard_conforming_strings to be turned on.
Kevin Grittner
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/utils/guc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/utils/guc.h b/src/include/utils/guc.h index a55a89b90d8..6e444756f8b 100644 --- a/src/include/utils/guc.h +++ b/src/include/utils/guc.h @@ -7,7 +7,7 @@ * Copyright (c) 2000-2006, PostgreSQL Global Development Group * Written by Peter Eisentraut <peter_e@gmx.net>. * - * $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.65 2006/03/06 18:38:11 momjian Exp $ + * $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.66 2006/03/06 19:49:20 momjian Exp $ *-------------------------------------------------------------------- */ #ifndef GUC_H @@ -121,6 +121,7 @@ extern bool Australian_timezones; extern bool default_with_oids; extern bool escape_string_warning; +extern bool standard_conforming_strings; extern int log_min_error_statement; extern int log_min_messages; |