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 00000000000..86ceba13c45 --- /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, PLyProcedure *); +extern HeapTuple PLy_exec_trigger(FunctionCallInfo, PLyProcedure *); + +#endif /* PLPY_EXEC_H */ |