blob: e4d2c0ed2532a632f0c24665b73e7f7f21538008 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* 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 */
|