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

Function MSC_context

src/gpre/msc.cpp:168–183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

166//
167
168gpre_ctx* MSC_context(gpre_req* request)
169{
170 // allocate and initialize
171
172 gpre_ctx* context = (gpre_ctx*) MSC_alloc(CTX_LEN);
173 context->ctx_request = request;
174 context->ctx_internal = request->req_internal++;
175 context->ctx_scope_level = request->req_scope_level;
176
177 // link in with the request block
178
179 context->ctx_next = request->req_contexts;
180 request->req_contexts = context;
181
182 return context;
183}
184
185
186//____________________________________________________________

Callers 14

EXP_contextFunction · 0.85
act_alter_tableFunction · 0.85
act_create_tableFunction · 0.85
act_deleteFunction · 0.85
act_open_blobFunction · 0.85
act_updateFunction · 0.85
act_upsertFunction · 0.85
par_modifyFunction · 0.85
par_returning_valuesFunction · 0.85
SQE_contextFunction · 0.85
SQE_selectFunction · 0.85
par_join_clauseFunction · 0.85

Calls 1

MSC_allocFunction · 0.85

Tested by

no test coverage detected