Skip to content

Commit

Permalink
mv
Browse files Browse the repository at this point in the history
  • Loading branch information
RekGRpth committed Nov 26, 2023
1 parent 1745f3e commit dfc1e1e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions conf.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
#include <nodes/makefuncs.h>
#include <pgstat.h>
#include <postmaster/bgworker.h>
#if PG_VERSION_NUM < 90500
#include <storage/barrier.h>
#endif
#include <storage/ipc.h>
#include <utils/acl.h>
#include <utils/builtins.h>
Expand Down
4 changes: 0 additions & 4 deletions include.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@ extern PGDLLIMPORT volatile sig_atomic_t ShutdownRequestPending;
extern void SignalHandlerForConfigReload(SIGNAL_ARGS);
extern void SignalHandlerForShutdownRequest(SIGNAL_ARGS);
#endif
#if PG_VERSION_NUM < 90500
#include <storage/barrier.h>
#endif
#include <storage/proc.h>
#include <utils/timestamp.h>

#ifdef GP_VERSION_NUM
#include "cdb/cdbvars.h"
Expand Down
3 changes: 3 additions & 0 deletions task.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

#include <pgstat.h>
#include <postmaster/bgworker.h>
#if PG_VERSION_NUM < 90500
#include <storage/barrier.h>
#endif
#include <storage/ipc.h>
#include <tcop/utility.h>
#include <utils/builtins.h>
Expand Down
3 changes: 3 additions & 0 deletions work.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
#include <libpq/libpq-be.h>
#include <pgstat.h>
#include <postmaster/bgworker.h>
#if PG_VERSION_NUM < 90500
#include <storage/barrier.h>
#endif
#include <storage/ipc.h>
#include <tcop/utility.h>
#include <utils/builtins.h>
Expand Down

0 comments on commit dfc1e1e

Please sign in to comment.