2011-12-18 21:14:16 +02:00
|
|
|
/*
|
|
|
|
* src/pl/plpython/plpy_exec.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PLPY_EXEC_H
|
|
|
|
#define PLPY_EXEC_H
|
|
|
|
|
|
|
|
#include "plpy_procedure.h"
|
|
|
|
|
2011-12-29 22:55:49 +02:00
|
|
|
extern Datum PLy_exec_function(FunctionCallInfo fcinfo, PLyProcedure *proc);
|
|
|
|
extern HeapTuple PLy_exec_trigger(FunctionCallInfo fcinfo, PLyProcedure *proc);
|
2011-12-18 21:14:16 +02:00
|
|
|
|
2012-06-10 15:20:04 -04:00
|
|
|
#endif /* PLPY_EXEC_H */
|