summaryrefslogtreecommitdiff
path: root/psycopg/connection_int.c
diff options
context:
space:
mode:
Diffstat (limited to 'psycopg/connection_int.c')
-rw-r--r--psycopg/connection_int.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/psycopg/connection_int.c b/psycopg/connection_int.c
index 85d47d5..a69776f 100644
--- a/psycopg/connection_int.c
+++ b/psycopg/connection_int.c
@@ -174,18 +174,12 @@ conn_get_standard_conforming_strings(PGconn *pgconn)
* not escaped strings (e.g. '\001' -> "\001"), relying on the
* fact that the '\' will pass untouched the string parser.
* In this case the E'' quotes are NOT to be used.
- *
- * The PSYCOPG_OWN_QUOTING implementation always returns escaped strings.
*/
scs = PQparameterStatus(pgconn, "standard_conforming_strings");
Dprintf("conn_connect: server standard_conforming_strings parameter: %s",
scs ? scs : "unavailable");
-#ifndef PSYCOPG_OWN_QUOTING
equote = (scs && (0 == strcmp("off", scs)));
-#else
- equote = (scs != NULL);
-#endif
Dprintf("conn_connect: server requires E'' quotes: %s",
equote ? "YES" : "NO");