|
6 | 6 | * |
7 | 7 | * Copyright (c) 1994, Regents of the University of California |
8 | 8 | * |
9 | | - * $Id: parsenodes.h,v 1.22 1997/09/0106:04:59 thomas Exp $ |
| 9 | + * $Id: parsenodes.h,v 1.23 1997/09/0108:11:57 vadim Exp $ |
10 | 10 | * |
11 | 11 | *------------------------------------------------------------------------- |
12 | 12 | */ |
@@ -162,9 +162,10 @@ typedef struct CreateTrigStmt { |
162 | 162 | List*args;/* list of (T_String) Values or NULL */ |
163 | 163 | boolbefore;/* BEFORE/AFTER */ |
164 | 164 | boolrow;/* ROW/STATEMENT */ |
| 165 | +charactions[4];/* Insert, Update, Delete */ |
165 | 166 | char*lang;/* NULL (which means Clanguage) */ |
166 | 167 | char*text;/* AS 'text' */ |
167 | | -List*upattr;/* UPDATE OF a, b,... (NI) or NULL */ |
| 168 | +List*attr;/* UPDATE OF a, b,... (NI) or NULL */ |
168 | 169 | char*when;/* WHEN 'a > 10 ...' (NI) or NULL */ |
169 | 170 | }CreateTrigStmt; |
170 | 171 |
|
|