aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/nodes.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-08-27 04:55:12 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-08-27 04:55:12 +0000
commit28e82066a1d17dce2c28ca5391dab1e4f1eb0c0f (patch)
tree2204fa82946fd20ffaf10fd498de0c921ea301eb /src/include/nodes/nodes.h
parentbc8f725a4aa4e2118caaf9e7c4fe3cc5632a02c0 (diff)
downloadpostgresql-28e82066a1d17dce2c28ca5391dab1e4f1eb0c0f.tar.gz
postgresql-28e82066a1d17dce2c28ca5391dab1e4f1eb0c0f.zip
PREPARE/EXECUTE statements. Patch by Neil Conway, some kibitzing
from Tom Lane.
Diffstat (limited to 'src/include/nodes/nodes.h')
-rw-r--r--src/include/nodes/nodes.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h
index f3437ce4cbf..3f5f6d74499 100644
--- a/src/include/nodes/nodes.h
+++ b/src/include/nodes/nodes.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: nodes.h,v 1.116 2002/08/19 15:08:47 tgl Exp $
+ * $Id: nodes.h,v 1.117 2002/08/27 04:55:11 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -200,6 +200,9 @@ typedef enum NodeTag
T_DropCastStmt,
T_CreateOpClassStmt,
T_RemoveOpClassStmt,
+ T_PrepareStmt,
+ T_ExecuteStmt,
+ T_DeallocateStmt,
T_A_Expr = 700,
T_ColumnRef,