diff options
Diffstat (limited to 'src/bin/pg_dump/parallel.h')
-rw-r--r-- | src/bin/pg_dump/parallel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/parallel.h b/src/bin/pg_dump/parallel.h index 7a32a9bc691..5bed015ef2a 100644 --- a/src/bin/pg_dump/parallel.h +++ b/src/bin/pg_dump/parallel.h @@ -45,9 +45,9 @@ typedef struct ParallelSlot ParallelArgs *args; T_WorkerStatus workerStatus; int status; - int pipeRead; + int pipeRead; /* master's end of the pipes */ int pipeWrite; - int pipeRevRead; + int pipeRevRead; /* child's end of the pipes */ int pipeRevWrite; #ifdef WIN32 uintptr_t hThread; |