/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/pl/plpython/plpy_cursorobject.h
24 строки
484 B
Tom Lane
Make PL/Python handle domain-type conversions correctly.
17 ноя 2017, 00:23
17 ноя 2017, 00:23
687f096
Код
Авторство
О чём код?
/* * 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 */