MCPcopy Create free account
hub / github.com/bloomberg/comdb2 / run_sp

Function run_sp

lua/sp.c:6472–6480  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6470}
6471
6472static int run_sp(struct sqlclntstate *clnt, int argcnt, char **err)
6473{
6474 int verifyretry_off = clnt->verifyretry_off;
6475 clnt->verifyretry_off = 1;
6476 int rc = run_sp_int(clnt, argcnt, err);
6477 join_threads(clnt->sp);
6478 clnt->verifyretry_off = verifyretry_off;
6479 return rc;
6480}
6481
6482#define copy(dest, type, src, conv) \
6483 dest = conv(*(type *)src); \

Callers 2

exec_thread_intFunction · 0.85
push_args_and_run_spFunction · 0.85

Calls 2

run_sp_intFunction · 0.85
join_threadsFunction · 0.85

Tested by

no test coverage detected