mirror of https://github.com/citusdata/citus.git
Address various header changes
Certain PostgreSQL 10 changes require modifications to our includes: * pg_sequence's interace has been refactored into its own file * textToQualifiedNameList is now in utils/varlena.h * pg_getnameinfo_all is now in common/ip.h * stringToQualifiedNameList is now in utils/regproc.hpull/1439/head
parent
300349e646
commit
cf7bfdb22b
|
@ -60,6 +60,9 @@
|
|||
#include "utils/relcache.h"
|
||||
#include "utils/ruleutils.h"
|
||||
#include "utils/tqual.h"
|
||||
#if (PG_VERSION_NUM >= 100000)
|
||||
#include "utils/varlena.h"
|
||||
#endif
|
||||
|
||||
|
||||
/* Shard related configuration */
|
||||
|
|
|
@ -19,7 +19,11 @@
|
|||
#include "distributed/metadata_cache.h"
|
||||
#include "distributed/multi_client_executor.h"
|
||||
#include "libpq/hba.h"
|
||||
#if (PG_VERSION_NUM >= 100000)
|
||||
#include "common/ip.h"
|
||||
#else
|
||||
#include "libpq/ip.h"
|
||||
#endif
|
||||
#include "libpq/libpq-be.h"
|
||||
#include "postmaster/postmaster.h"
|
||||
#include "storage/fd.h"
|
||||
|
|
|
@ -47,6 +47,9 @@
|
|||
#include "utils/builtins.h"
|
||||
#include "utils/fmgroids.h"
|
||||
#include "utils/lsyscache.h"
|
||||
#if (PG_VERSION_NUM >= 100000)
|
||||
#include "utils/regproc.h"
|
||||
#endif
|
||||
#include "utils/rel.h"
|
||||
#include "utils/syscache.h"
|
||||
#include "utils/tqual.h"
|
||||
|
|
|
@ -42,6 +42,10 @@
|
|||
#include "tcop/utility.h"
|
||||
#include "utils/builtins.h"
|
||||
#include "utils/lsyscache.h"
|
||||
#if (PG_VERSION_NUM >= 100000)
|
||||
#include "utils/regproc.h"
|
||||
#include "utils/varlena.h"
|
||||
#endif
|
||||
|
||||
|
||||
/* Config variable managed via guc.c */
|
||||
|
|
|
@ -14,6 +14,9 @@
|
|||
#include "postgres.h" /* IWYU pragma: keep */
|
||||
#include "c.h"
|
||||
|
||||
#if (PG_VERSION_NUM >= 100000)
|
||||
#include "catalog/pg_sequence.h"
|
||||
#endif
|
||||
#include "commands/sequence.h"
|
||||
#include "lib/stringinfo.h"
|
||||
#include "nodes/parsenodes.h"
|
||||
|
|
Loading…
Reference in New Issue