/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/pl/plpython/plpy_exec.h
15 строк
456 B
Tom Lane
plpython: Use funccache.c infrastructure for procedure caching.
21 июн 2026, 22:08
21 июн 2026, 22:08
9bcb8a6
Код
Авторство
О чём код?
/* * src/pl/plpython/plpy_exec.h */ #ifndef PLPY_EXEC_H #define PLPY_EXEC_H #include "plpy_procedure.h" extern Datum PLy_exec_function(FunctionCallInfo fcinfo, PLyProcedureCache *pcache); extern HeapTuple PLy_exec_trigger(FunctionCallInfo fcinfo, PLyProcedure *proc); extern void PLy_exec_event_trigger(FunctionCallInfo fcinfo, PLyProcedure *proc); extern void PLy_function_cleanup_srfstate(PLyProcedureCache *pcache); #endif /* PLPY_EXEC_H */