summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2004-10-27 07:26:56 +0000
committerNeil Conway <neilc@samurai.com>2004-10-27 07:26:56 +0000
commit28d8ff794826d7065438acc9d573b2fe4b6a1b84 (patch)
treea8fcc14f9bed40103a79e4d6443ca9be63c40846 /src
parenta080ec0af6b593212e9c0ec681a25bd92cf449fa (diff)
Trivial fix: clarify a comment.
Diffstat (limited to 'src')
-rw-r--r--src/include/nodes/plannodes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h
index 852cf34832b..43ab55593bc 100644
--- a/src/include/nodes/plannodes.h
+++ b/src/include/nodes/plannodes.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/nodes/plannodes.h,v 1.75 2004/08/29 05:06:57 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/nodes/plannodes.h,v 1.76 2004/10/27 07:26:56 neilc Exp $
*
*-------------------------------------------------------------------------
*/
@@ -85,7 +85,7 @@ typedef struct Plan
*/
int nParamExec; /* Number of them in entire query. This is
* to get Executor know about how many
- * param_exec there are in query plan. */
+ * PARAM_EXEC there are in query plan. */
} Plan;
/* ----------------