aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVadim B. Mikheev <vadim4o@yahoo.com>1997-09-01 08:11:57 +0000
committerVadim B. Mikheev <vadim4o@yahoo.com>1997-09-01 08:11:57 +0000
commitb69b815e3a34cbdfbe997b91599a2bd614680a76 (patch)
tree82a0029e0dc444fc7dc04b326bf79ef2d730045b
parent2ca45d572952a6a6ea29fc039426c57bb6ebfe3f (diff)
downloadpostgresql-b69b815e3a34cbdfbe997b91599a2bd614680a76.tar.gz
postgresql-b69b815e3a34cbdfbe997b91599a2bd614680a76.zip
+ Member for actions in CreateTrigStmt.
-rw-r--r--src/include/nodes/parsenodes.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index 81e635cebad..8492dcde1d8 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: parsenodes.h,v 1.22 1997/09/01 06:04:59 thomas Exp $
+ * $Id: parsenodes.h,v 1.23 1997/09/01 08:11:57 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@@ -162,9 +162,10 @@ typedef struct CreateTrigStmt {
List *args; /* list of (T_String) Values or NULL */
bool before; /* BEFORE/AFTER */
bool row; /* ROW/STATEMENT */
+ char actions[4]; /* Insert, Update, Delete */
char *lang; /* NULL (which means Clanguage) */
char *text; /* AS 'text' */
- List *upattr; /* UPDATE OF a, b,... (NI) or NULL */
+ List *attr; /* UPDATE OF a, b,... (NI) or NULL */
char *when; /* WHEN 'a > 10 ...' (NI) or NULL */
} CreateTrigStmt;