Commit 30b9a449 authored by Peter Eisentraut's avatar Peter Eisentraut

Remove unnecessary include

Between 6eeb95f0 and
7b1c2a0f, builtins.h contained
additional prototypes that have now been moved elsewhere, so we don't
need to include nodes/parsenodes.h anymore.

Fix some files that were relying on builtins.h implicitly pulling in
some unrelated stuff they needed.
Reviewed-by: default avatarPavel Stehule <pavel.stehule@gmail.com>
parent 5d7c9c90
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include "catalog/pg_type.h" #include "catalog/pg_type.h"
#include "storage/lmgr.h" #include "storage/lmgr.h"
#include "miscadmin.h" #include "miscadmin.h"
#include "nodes/value.h"
#include "utils/builtins.h" #include "utils/builtins.h"
#include "utils/catcache.h" #include "utils/catcache.h"
#include "utils/fmgroids.h" #include "utils/fmgroids.h"
......
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include "catalog/pg_type.h" #include "catalog/pg_type.h"
#include "libpq/pqformat.h" #include "libpq/pqformat.h"
#include "nodes/value.h"
#include "utils/array.h" #include "utils/array.h"
#include "utils/builtins.h" #include "utils/builtins.h"
......
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
#define BUILTINS_H #define BUILTINS_H
#include "fmgr.h" #include "fmgr.h"
#include "nodes/parsenodes.h"
#include "utils/sortsupport.h" #include "utils/sortsupport.h"
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment