]> granicus.if.org Git - postgresql/blob - src/pl/plpython/plpy_plpymodule.h
Run pgindent on 9.2 source tree in preparation for first 9.3
[postgresql] / src / pl / plpython / plpy_plpymodule.h
1 /*
2  * src/pl/plpython/plpy_plpymodule.h
3  */
4
5 #ifndef PLPY_PLPYMODULE_H
6 #define PLPY_PLPYMODULE_H
7
8 #include "utils/hsearch.h"
9
10 /* A hash table mapping sqlstates to exceptions, for speedy lookup */
11 extern HTAB *PLy_spi_exceptions;
12
13
14 #if PY_MAJOR_VERSION >= 3
15 PyMODINIT_FUNC PyInit_plpy(void);
16 #endif
17 extern void PLy_init_plpy(void);
18
19 #endif   /* PLPY_PLPYMODULE_H */