aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1996-12-20 20:33:46 +0000
committerBruce Momjian <bruce@momjian.us>1996-12-20 20:33:46 +0000
commita952d6729646139525788c1bf4497ac78637b51a (patch)
treeb9b1a20c5f22ab6c6480edae2fb0cb6efd33070a
parent4371756f162cd548d9dce3d434bec2bcdedc4883 (diff)
downloadpostgresql-a952d6729646139525788c1bf4497ac78637b51a.tar.gz
postgresql-a952d6729646139525788c1bf4497ac78637b51a.zip
Remove NOTIFY_PATCH.
-rw-r--r--src/include/config.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/include/config.h b/src/include/config.h
index 07a46762fb9..0bc1535e935 100644
--- a/src/include/config.h
+++ b/src/include/config.h
@@ -299,20 +299,6 @@
#define FUNC_UTIL_PATCH
/*
- * Async notifies received while a backend is in the middle of a begin/end
- * transaction block are lost by libpq when the final end command is issued.
- *
- * The bug is in the routine PQexec of libpq. The routine throws away any
- * message from the backend when a message of type 'C' is received. This
- * type of message is sent when the result of a portal query command with
- * no tuples is returned. Unfortunately this is the case of the end command.
- * As all async notification are sent only when the transaction is finished,
- * if they are received in the middle of a transaction they are lost in the
- * libpq library. I added some tracing code to PQexec and this is the output:
- */
-#define PQ_NOTIFY_PATCH
-
-/*
* Define this if you want to retrieve arrays attributes as Tcl lists instead
* of postgres C-like arrays, for example {{"a1" "a2"} {"b1" "b2"}} instead
* of {{"a1","a2"},{"b1","b2"}}.