Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitac295f4

Browse files
committed
Update struct Trigger definition.
1 parentfa3aa5e commitac295f4

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

‎doc/src/sgml/trigger.sgml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -184,13 +184,18 @@ tg_trigger
184184

185185
typedef struct Trigger
186186
{
187-
char*tgname;
188-
Oidtgfoid;
189-
func_ptrtgfunc;
190-
int16tgtype;
191-
int16tgnargs;
192-
int16tgattr[8];
193-
char**tgargs;
187+
Oid tgoid;
188+
char *tgname;
189+
Oid tgfoid;
190+
FmgrInfo tgfunc;
191+
int16 tgtype;
192+
bool tgenabled;
193+
bool tgisconstraint;
194+
bool tgdeferrable;
195+
bool tginitdeferred;
196+
int16 tgnargs;
197+
int16 tgattr[FUNC_MAX_ARGS];
198+
char **tgargs;
194199
} Trigger;
195200

196201
tgname is the trigger's name, tgnargs is number of arguments in tgargs,

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp