diff options
author | Tomas Vondra | 2017-06-01 20:32:49 +0000 |
---|---|---|
committer | Tomas Vondra | 2017-06-01 20:32:49 +0000 |
commit | 8a36babf462c87acb7b704b40e71c0994edefe9c (patch) | |
tree | 3cf36b8a79786297a7ad63b206efb6308ff78e8d | |
parent | b494491ab1021b0e13d43b04aca2c42b99f68360 (diff) |
Add missing include (pgxcnode.h) into parallel.c
Commit 9b12e275cd0b added a InitMultinodeExecutor() call to
ParallelWorkerMain(), but did not include the header with prototype of
that function. So fix that.
-rw-r--r-- | src/backend/access/transam/parallel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/access/transam/parallel.c b/src/backend/access/transam/parallel.c index 3c0da2e1e0..c36a92cdb9 100644 --- a/src/backend/access/transam/parallel.c +++ b/src/backend/access/transam/parallel.c @@ -24,6 +24,7 @@ #include "libpq/pqmq.h" #include "miscadmin.h" #include "optimizer/planmain.h" +#include "pgxc/pgxcnode.h" #include "storage/ipc.h" #include "storage/sinval.h" #include "storage/spin.h" |