diff options
Diffstat (limited to 'src/pl/plpython/plpy_exec.h')
-rw-r--r-- | src/pl/plpython/plpy_exec.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/pl/plpython/plpy_exec.h b/src/pl/plpython/plpy_exec.h new file mode 100644 index 0000000..68da1ff --- /dev/null +++ b/src/pl/plpython/plpy_exec.h @@ -0,0 +1,13 @@ +/* + * 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); + +#endif /* PLPY_EXEC_H */ |