1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-03-17 21:18:00 +02:00

[PBCKP-375] Prepared for moving RelFileNode to RelFileLocator in the PG16.

This commit is contained in:
Victor Spirin 2022-12-04 18:15:22 +03:00 committed by Yura Sokolov
parent 3bc0fc4b81
commit 15c304ad6c

View File

@ -9,7 +9,12 @@
#ifndef DATAPAGEMAP_H
#define DATAPAGEMAP_H
#if PG_VERSION_NUM < 160000
#include "storage/relfilenode.h"
#else
#include "storage/relfilelocator.h"
#define RelFileNode RelFileLocator
#endif
#include "storage/block.h"