Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
opt
/
postgresql-13.1-202012021752
/
include
/
server
/
//opt/postgresql-13.1-202012021752/include/server/plpy_cursorobject.h
/* * src/pl/plpython/plpy_cursorobject.h */ #ifndef PLPY_CURSOROBJECT_H #define PLPY_CURSOROBJECT_H #include "plpy_typeio.h" typedef struct PLyCursorObject { PyObject_HEAD char *portalname; PLyDatumToOb result; bool closed; MemoryContext mcxt; } PLyCursorObject; extern void PLy_cursor_init_type(void); extern PyObject *PLy_cursor(PyObject *self, PyObject *args); extern PyObject *PLy_cursor_plan(PyObject *ob, PyObject *args); #endif /* PLPY_CURSOROBJECT_H */