MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / act_event

Function act_event

src/gpre/sql.cpp:2987–2999  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2985//
2986
2987static act* act_event()
2988{
2989 act* action = NULL;
2990
2991 if (MSC_match(KW_INIT))
2992 action = PAR_event_init(true);
2993 else if (MSC_match(KW_WAIT))
2994 action = PAR_event_wait(true);
2995 else
2996 CPR_s_error("INIT or WAIT");
2997 action->act_whenever = gen_whenever();
2998 return action;
2999}
3000
3001
3002//____________________________________________________________

Callers 1

SQL_actionFunction · 0.85

Calls 5

MSC_matchFunction · 0.85
PAR_event_initFunction · 0.85
PAR_event_waitFunction · 0.85
CPR_s_errorFunction · 0.85
gen_wheneverFunction · 0.70

Tested by

no test coverage detected