Commit ac295f43 authored by Tom Lane's avatar Tom Lane

Update struct Trigger definition.

parent fa3aa5e1
...@@ -184,12 +184,17 @@ tg_trigger ...@@ -184,12 +184,17 @@ tg_trigger
typedef struct Trigger typedef struct Trigger
{ {
Oid tgoid;
char *tgname; char *tgname;
Oid tgfoid; Oid tgfoid;
func_ptr tgfunc; FmgrInfo tgfunc;
int16 tgtype; int16 tgtype;
bool tgenabled;
bool tgisconstraint;
bool tgdeferrable;
bool tginitdeferred;
int16 tgnargs; int16 tgnargs;
int16 tgattr[8]; int16 tgattr[FUNC_MAX_ARGS];
char **tgargs; char **tgargs;
} Trigger; } Trigger;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment