/
balmaster
/
postgres
Обзор
Документация
Войти
/
balmaster
/
postgres
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/pl/plpython/plpy_planobject.h
26 строк
463 B
Tom Lane
Repair memory leaks in plpython.
11 янв 2025, 19:45
11 янв 2025, 19:45
29dfffa
Код
Авторство
О чём код?
/* * src/pl/plpython/plpy_planobject.h */ #ifndef PLPY_PLANOBJECT_H #define PLPY_PLANOBJECT_H #include "executor/spi.h" #include "plpy_typeio.h" typedef struct PLyPlanObject { PyObject_HEAD SPIPlanPtr plan; int nargs; Oid *types; PLyObToDatum *args; MemoryContext mcxt; } PLyPlanObject; extern void PLy_plan_init_type(void); extern PyObject *PLy_plan_new(void); extern bool is_PLyPlanObject(PyObject *ob); #endif /* PLPY_PLANOBJECT_H */