aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/libpq/fe-protocol3.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2008-01-15 22:18:20 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2008-01-15 22:18:20 +0000
commit0153c4c4663f87164434ae418a735900f598c7e1 (patch)
treef605c26a6d797e73e4dba833c2b3c7ade3503c68 /src/interfaces/libpq/fe-protocol3.c
parent14e2a260a5187a1e83c6ec77f9db7fa5893e177e (diff)
downloadpostgresql-0153c4c4663f87164434ae418a735900f598c7e1.tar.gz
postgresql-0153c4c4663f87164434ae418a735900f598c7e1.zip
Be less wishy-washy in the documentation and comments about whether a
ParameterStatus message can be sent during COPY OUT: it's definitely possible, since COPY from a SELECT subquery can trigger any user-defined function.
Diffstat (limited to 'src/interfaces/libpq/fe-protocol3.c')
-rw-r--r--src/interfaces/libpq/fe-protocol3.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/interfaces/libpq/fe-protocol3.c b/src/interfaces/libpq/fe-protocol3.c
index 2f57500e4f3..c40868805f3 100644
--- a/src/interfaces/libpq/fe-protocol3.c
+++ b/src/interfaces/libpq/fe-protocol3.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-protocol3.c,v 1.32 2008/01/14 18:46:17 tgl Exp $
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-protocol3.c,v 1.33 2008/01/15 22:18:20 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1310,9 +1310,8 @@ getCopyDataMessage(PGconn *conn)
/*
* If it's a legitimate async message type, process it. (NOTIFY
* messages are not currently possible here, but we handle them for
- * completeness. NOTICE is definitely possible, and ParameterStatus
- * could probably be made to happen.) Otherwise, if it's anything
- * except Copy Data, report end-of-copy.
+ * completeness.) Otherwise, if it's anything except Copy Data,
+ * report end-of-copy.
*/
switch (id)
{