Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa3aa5e commit ac295f4Copy full SHA for ac295f4
doc/src/sgml/trigger.sgml
@@ -184,13 +184,18 @@ tg_trigger
184
185
typedef struct Trigger
186
{
187
- char *tgname;
188
- Oid tgfoid;
189
- func_ptr tgfunc;
190
- int16 tgtype;
191
- int16 tgnargs;
192
- int16 tgattr[8];
193
- char **tgargs;
+ Oid tgoid;
+ char *tgname;
+ Oid tgfoid;
+ FmgrInfo tgfunc;
+ int16 tgtype;
+ bool tgenabled;
+ bool tgisconstraint;
194
+ bool tgdeferrable;
195
+ bool tginitdeferred;
196
+ int16 tgnargs;
197
+ int16 tgattr[FUNC_MAX_ARGS];
198
+ char **tgargs;
199
} Trigger;
200
201
tgname is the trigger's name, tgnargs is number of arguments in tgargs,
0 commit comments