From: Tomas Vondra Date: Thu, 1 Jun 2017 20:32:49 +0000 (+0200) Subject: Add missing include (pgxcnode.h) into parallel.c X-Git-Tag: XL_10_R1BETA1~292 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=8a36babf462c87acb7b704b40e71c0994edefe9c;p=postgres-xl.git 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. --- 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"