mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Update struct Trigger definition.
This commit is contained in:
@ -184,13 +184,18 @@ tg_trigger
|
|||||||
|
|
||||||
typedef struct Trigger
|
typedef struct Trigger
|
||||||
{
|
{
|
||||||
char *tgname;
|
Oid tgoid;
|
||||||
Oid tgfoid;
|
char *tgname;
|
||||||
func_ptr tgfunc;
|
Oid tgfoid;
|
||||||
int16 tgtype;
|
FmgrInfo tgfunc;
|
||||||
int16 tgnargs;
|
int16 tgtype;
|
||||||
int16 tgattr[8];
|
bool tgenabled;
|
||||||
char **tgargs;
|
bool tgisconstraint;
|
||||||
|
bool tgdeferrable;
|
||||||
|
bool tginitdeferred;
|
||||||
|
int16 tgnargs;
|
||||||
|
int16 tgattr[FUNC_MAX_ARGS];
|
||||||
|
char **tgargs;
|
||||||
} Trigger;
|
} Trigger;
|
||||||
|
|
||||||
tgname is the trigger's name, tgnargs is number of arguments in tgargs,
|
tgname is the trigger's name, tgnargs is number of arguments in tgargs,
|
||||||
|
Reference in New Issue
Block a user