~ubuntu-branches/debian/experimental/postgresql-11/experimental

« back to all changes in this revision

Viewing changes to src/pl/plpython/plpy_plpymodule.h

  • Committer: Package Import Robot
  • Author(s): Christoph Berg
  • Date: 2018-05-22 14:19:08 UTC
  • Revision ID: package-import@ubuntu.com-20180522141908-0oy9ujs1b5vrda74
Tags: upstream-11~beta1
ImportĀ upstreamĀ versionĀ 11~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 */