diff options
| author | Tom Lane | 2000-05-29 01:59:17 +0000 |
|---|---|---|
| committer | Tom Lane | 2000-05-29 01:59:17 +0000 |
| commit | 18952f67446da73f938d213b5225b99e95657837 (patch) | |
| tree | 7ad26843000b8a17e798dafacbd29baf2d390fa1 /src/include/nodes | |
| parent | 147ccf5c8045c79a9c8194044359e140c9074ed7 (diff) | |
Second round of fmgr changes: triggers are now invoked in new style,
CurrentTriggerData is history.
Diffstat (limited to 'src/include/nodes')
| -rw-r--r-- | src/include/nodes/nodes.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index a8fe032ba51..5d049dadfb2 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: nodes.h,v 1.67 2000/04/12 17:16:40 momjian Exp $ + * $Id: nodes.h,v 1.68 2000/05/29 01:59:12 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -223,7 +223,13 @@ typedef enum NodeTag T_CaseExpr, T_CaseWhen, T_RowMark, - T_FkConstraint + T_FkConstraint, + + /*--------------------- + * TAGS FOR FUNCTION-CALL CONTEXT AND RESULTINFO NODES (cf. fmgr.h) + *--------------------- + */ + T_TriggerData = 800 /* in commands/trigger.h */ } NodeTag; /* |
