mirror of
https://github.com/postgres/postgres.git
synced 2026-06-19 21:49:02 -04:00
Fix assorted compilation failures in contrib
Evidently I failed to test a compile after my earlier header shuffling.
This commit is contained in:
parent
1a26e1c766
commit
9df55c8c3f
4 changed files with 9 additions and 3 deletions
|
|
@ -12,6 +12,8 @@
|
|||
*/
|
||||
#include "postgres.h"
|
||||
|
||||
#include <limits.h>
|
||||
|
||||
#include "commands/explain.h"
|
||||
#include "executor/instrument.h"
|
||||
#include "utils/guc.h"
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@
|
|||
#include "catalog/pg_type.h"
|
||||
#include "executor/spi.h"
|
||||
#include "foreign/foreign.h"
|
||||
#include "lib/stringinfo.h"
|
||||
#include "mb/pg_wchar.h"
|
||||
#include "miscadmin.h"
|
||||
#include "parser/scansup.h"
|
||||
|
|
|
|||
|
|
@ -18,10 +18,12 @@
|
|||
*/
|
||||
|
||||
#include "postgres.h"
|
||||
|
||||
#include "funcapi.h"
|
||||
#include "lib/stringinfo.h"
|
||||
#include "miscadmin.h"
|
||||
#include "storage/fsm_internals.h"
|
||||
#include "utils/builtins.h"
|
||||
#include "miscadmin.h"
|
||||
#include "funcapi.h"
|
||||
|
||||
Datum fsm_page_contents(PG_FUNCTION_ARGS);
|
||||
|
||||
|
|
|
|||
|
|
@ -35,8 +35,9 @@
|
|||
#include <math.h>
|
||||
|
||||
#include "catalog/pg_type.h"
|
||||
#include "funcapi.h"
|
||||
#include "executor/spi.h"
|
||||
#include "funcapi.h"
|
||||
#include "lib/stringinfo.h"
|
||||
#include "miscadmin.h"
|
||||
#include "utils/builtins.h"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue