/
balmaster
/
postgres
Обзор
Документация
Войти
/
balmaster
/
postgres
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/pl/plpython/plpy_exec.h
14 строк
379 B
Peter Eisentraut
PL/Python: Add event trigger support
21 авг 2025, 10:21
21 авг 2025, 10:21
53eff47
Код
Авторство
О чём код?
/* * 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, PLyProcedure *proc); extern HeapTuple PLy_exec_trigger(FunctionCallInfo fcinfo, PLyProcedure *proc); extern void PLy_exec_event_trigger(FunctionCallInfo fcinfo, PLyProcedure *proc); #endif /* PLPY_EXEC_H */