1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-01-05 13:20:31 +02:00

Include catalog/catalog.h for pre PG 11

This commit is contained in:
Arthur Zakirov 2018-10-15 17:26:06 +03:00
parent 2f3ebb499b
commit 720897880a
2 changed files with 6 additions and 2 deletions

View File

@ -10,8 +10,10 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#if PG_VERSION_NUM < 110000
#include "catalog/catalog.h"
#endif
#include "catalog/pg_tablespace.h" #include "catalog/pg_tablespace.h"
#include "common/relpath.h"
#include "pgtar.h" #include "pgtar.h"
#include "receivelog.h" #include "receivelog.h"
#include "streamutil.h" #include "streamutil.h"

View File

@ -10,8 +10,10 @@
#include "postgres_fe.h" #include "postgres_fe.h"
#if PG_VERSION_NUM < 110000
#include "catalog/catalog.h"
#endif
#include "catalog/pg_tablespace.h" #include "catalog/pg_tablespace.h"
#include "common/relpath.h"
#include <unistd.h> #include <unistd.h>
#include <sys/stat.h> #include <sys/stat.h>