Fix recursive RECORD-returning plpython functions.
[pgsql.git] / src / pl / plpython / plpy_plpymodule.h
blob1ca3823daf283027ba76d478375caf951e67abce
1 /*
2 * src/pl/plpython/plpy_plpymodule.h
3 */
5 #ifndef PLPY_PLPYMODULE_H
6 #define PLPY_PLPYMODULE_H
8 #include "plpython.h"
9 #include "utils/hsearch.h"
11 /* A hash table mapping sqlstates to exceptions, for speedy lookup */
12 extern HTAB *PLy_spi_exceptions;
15 PyMODINIT_FUNC PyInit_plpy(void);
16 extern void PLy_init_plpy(void);
18 #endif /* PLPY_PLPYMODULE_H */