MCPcopy Create free account
hub / github.com/apache/cloudberry / PLy_procedure_name

Function PLy_procedure_name

src/pl/plpython/plpy_procedure.c:48–54  ·  view source on GitHub ↗

* PLy_procedure_name: get the name of the specified procedure. * * NB: this returns the SQL name, not the internal Python procedure name */

Source from the content-addressed store, hash-verified

46 * NB: this returns the SQL name, not the internal Python procedure name
47 */
48char *
49PLy_procedure_name(PLyProcedure *proc)
50{
51 if (proc == NULL)
52 return "<unknown procedure>";
53 return proc->proname;
54}
55
56/*
57 * PLy_procedure_get: returns a cached PLyProcedure, or creates, stores and

Callers 2

plpython_error_callbackFunction · 0.85
PLy_tracebackFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected