diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-03-06 19:49:20 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-03-06 19:49:20 +0000 |
commit | 19c21d115d221d9738afad142f2886dfd3cc40de (patch) | |
tree | f5a4a3f11ae8a6efe639a8717f5fa2c267dbd7b0 /src/bin/psql/common.h | |
parent | a9c1047ebdde533949fd8096c8ac1eca5e821292 (diff) | |
download | postgresql-19c21d115d221d9738afad142f2886dfd3cc40de.tar.gz postgresql-19c21d115d221d9738afad142f2886dfd3cc40de.zip |
Enable standard_conforming_strings to be turned on.
Kevin Grittner
Diffstat (limited to 'src/bin/psql/common.h')
-rw-r--r-- | src/bin/psql/common.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/common.h b/src/bin/psql/common.h index 70bb10d6700..b12ccdec575 100644 --- a/src/bin/psql/common.h +++ b/src/bin/psql/common.h @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2006, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/common.h,v 1.46 2006/03/05 15:58:51 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/common.h,v 1.47 2006/03/06 19:49:20 momjian Exp $ */ #ifndef COMMON_H #define COMMON_H @@ -57,6 +57,7 @@ extern PGresult *PSQLexec(const char *query, bool start_xact); extern bool SendQuery(const char *query); extern bool is_superuser(void); +extern bool standard_strings(void); extern const char *session_username(void); extern char *expand_tilde(char **filename); |