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

Function PLy_plan_execute

src/pl/plpython/plpy_planobject.c:102–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

100
101
102static PyObject *
103PLy_plan_execute(PyObject *self, PyObject *args)
104{
105 PyObject *list = NULL;
106 long limit = 0;
107
108 if (!PyArg_ParseTuple(args, "|Ol", &list, &limit))
109 return NULL;
110
111 return PLy_spi_execute_plan(self, list, limit);
112}
113
114
115static PyObject *

Callers

nothing calls this directly

Calls 1

PLy_spi_execute_planFunction · 0.85

Tested by

no test coverage detected