1 /*
2  * src/pl/plpython/plpy_exec.h
3  */
4 
5 #ifndef PLPY_EXEC_H
6 #define PLPY_EXEC_H
7 
8 #include "plpy_procedure.h"
9 
10 extern Datum PLy_exec_function(FunctionCallInfo fcinfo, PLyProcedure *proc);
11 extern HeapTuple PLy_exec_trigger(FunctionCallInfo fcinfo, PLyProcedure *proc);
12 
13 #endif							/* PLPY_EXEC_H */
14