From: Tom Lane Date: Thu, 31 Jan 2013 01:11:58 +0000 (-0500) Subject: Don't use spi_priv.h in plpython. X-Git-Tag: REL9_3_BETA1~403 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2ab218b57698bf76fc31b03e6230d057f5187ba3;p=thirdparty%2Fpostgresql.git 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. --- 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"