Skip to content

Commit b10a9d5

Browse files
committed
Fix postgres 19 support
Commit postgres/postgres@fba4233 removed include "utils/sharedtuplestore.h" (which includes "storage/fd.h") from src/include/nodes/execnodes.h.
1 parent cf1371c commit b10a9d5

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

work.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@
5555
#define CreateWaitEventSetMy(nevents) CreateWaitEventSet(TopMemoryContext, nevents)
5656
#endif
5757

58+
#if PG_VERSION_NUM >= 190000
59+
#include <storage/fd.h>
60+
#endif
61+
5862
static dlist_head remote;
5963
static volatile uint64 idle_count = 0;
6064
static Work work = {0};

0 commit comments

Comments
 (0)