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

Function MSC_action

src/gpre/msc.cpp:69–82  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67//
68
69act* MSC_action( gpre_req* request, act_t type)
70{
71 act* action = (act*) MSC_alloc(ACT_LEN);
72 action->act_type = type;
73
74 if (request)
75 {
76 action->act_next = request->req_actions;
77 request->req_actions = action;
78 action->act_request = request;
79 }
80
81 return action;
82}
83
84
85//____________________________________________________________

Callers 15

act_alter_databaseFunction · 0.85
act_alter_domainFunction · 0.85
act_alter_indexFunction · 0.85
act_alter_tableFunction · 0.85
act_connectFunction · 0.85
act_create_databaseFunction · 0.85
act_create_domainFunction · 0.85
act_create_generatorFunction · 0.85
act_create_indexFunction · 0.85
act_create_shadowFunction · 0.85
act_create_tableFunction · 0.85
act_create_viewFunction · 0.85

Calls 1

MSC_allocFunction · 0.85

Tested by

no test coverage detected