diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-01-07 13:44:37 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-01-07 13:44:37 +0000 |
commit | 1cfd9e88349fc259d17914ccfd4eaf7bb7f7d141 (patch) | |
tree | d1a204c32625761f4c36cc02bf9a83af32eb8748 /src/backend/executor | |
parent | b09f930d2eec6ed2427786d9aa64c1206859774d (diff) | |
download | postgresql-1cfd9e88349fc259d17914ccfd4eaf7bb7f7d141.tar.gz postgresql-1cfd9e88349fc259d17914ccfd4eaf7bb7f7d141.zip |
Fix executor/spi.h to follow our usual conventions for include files, ie,
not include postgres.h nor anything else it doesn't directly need. Add
#includes to calling files as needed to compensate. Per my proposal of
yesterday.
This should be noted as a source code change in the 8.4 release notes,
since it's likely to require changes in add-on modules.
Diffstat (limited to 'src/backend/executor')
-rw-r--r-- | src/backend/executor/spi.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/backend/executor/spi.c b/src/backend/executor/spi.c index 4bc45dc17f8..5391dcb6e9b 100644 --- a/src/backend/executor/spi.c +++ b/src/backend/executor/spi.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/spi.c,v 1.204 2009/01/02 20:42:00 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/executor/spi.c,v 1.205 2009/01/07 13:44:36 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -16,12 +16,20 @@ #include "access/printtup.h" #include "access/sysattr.h" +#include "access/xact.h" #include "catalog/heap.h" +#include "catalog/pg_type.h" #include "commands/trigger.h" +#include "executor/executor.h" #include "executor/spi_priv.h" +#include "tcop/pquery.h" +#include "tcop/utility.h" +#include "utils/builtins.h" +#include "utils/datum.h" #include "utils/lsyscache.h" #include "utils/memutils.h" #include "utils/snapmgr.h" +#include "utils/syscache.h" #include "utils/typcache.h" |