diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2013-01-30 20:11:58 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2013-01-30 20:11:58 -0500 |
commit | 2ab218b57698bf76fc31b03e6230d057f5187ba3 (patch) | |
tree | ef42c7e58d4c22a55b9f0b0dfb3115cc2ae953e2 | |
parent | 0900ac2d0dba3168ba574e5b0b61170237b4fdea (diff) | |
download | postgresql-2ab218b57698bf76fc31b03e6230d057f5187ba3.tar.gz postgresql-2ab218b57698bf76fc31b03e6230d057f5187ba3.zip |
Don't use spi_priv.h in plpython.
There may once have been a reason to violate modularity like that,
but it doesn't appear that there is anymore.
-rw-r--r-- | src/pl/plpython/plpy_spi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpython/plpy_spi.c b/src/pl/plpython/plpy_spi.c index a65af37e657..c9182eb71a3 100644 --- a/src/pl/plpython/plpy_spi.c +++ b/src/pl/plpython/plpy_spi.c @@ -9,7 +9,7 @@ #include "access/htup_details.h" #include "access/xact.h" #include "catalog/pg_type.h" -#include "executor/spi_priv.h" +#include "executor/spi.h" #include "mb/pg_wchar.h" #include "parser/parse_type.h" #include "utils/memutils.h" |