diff options
Diffstat (limited to 'src/include/nodes/nodes.h')
-rw-r--r-- | src/include/nodes/nodes.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index 2a4468799f9..53c406cc518 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/nodes.h,v 1.228 2009/10/08 02:39:24 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/nodes.h,v 1.229 2009/10/10 01:43:50 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -43,6 +43,7 @@ typedef enum NodeTag */ T_Plan = 100, T_Result, + T_ModifyTable, T_Append, T_RecursiveUnion, T_BitmapAnd, @@ -81,6 +82,7 @@ typedef enum NodeTag */ T_PlanState = 200, T_ResultState, + T_ModifyTableState, T_AppendState, T_RecursiveUnionState, T_BitmapAndState, |