Remove unnecessary header includes
authorPeter Geoghegan <pg@heroku.com>
Wed, 12 Mar 2014 08:36:50 +0000 (01:36 -0700)
committerPeter Geoghegan <pg@heroku.com>
Wed, 12 Mar 2014 08:36:50 +0000 (01:36 -0700)
src/backend/utils/adt/jsonb.c
src/backend/utils/adt/jsonb_op.c

index 3294b8d2367908dd3da6cb5bd7d06d3341f8bf55..d2b927f6c3f7fb46d3cf04a9c30ca5f755947520 100644 (file)
@@ -12,7 +12,6 @@
 #include "postgres.h"
 
 #include "libpq/pqformat.h"
-#include "miscadmin.h"
 #include "utils/builtins.h"
 #include "utils/json.h"
 #include "utils/jsonapi.h"
index 19828dbd533f648d3e98761b353efa42919c727d..e2e02e0aa592f49ad976d35ea52a43abba19de87 100644 (file)
 #include "postgres.h"
 
 #include "access/hash.h"
-#include "catalog/pg_type.h"
-#include "funcapi.h"
 #include "utils/builtins.h"
 #include "utils/jsonb.h"
-#include "utils/memutils.h"
-#include "utils/pg_crc.h"
 
 static bool deepContains(JsonbIterator ** it1, JsonbIterator ** it2);