summaryrefslogtreecommitdiff
path: root/src/include/access/parallel.h
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2015-05-05 22:41:03 -0400
committerRobert Haas <rhaas@postgresql.org>2015-05-05 22:41:03 -0400
commit1998261034ec7a948bb9b25b7cb88d014d371da1 (patch)
treeee81f62d42154f385acd897d095322c49957d9da /src/include/access/parallel.h
parent929ca96584bef1cc7d09a8e57d26d8c3f25a92a4 (diff)
Avoid using a C++ keyword as a structure member name.
Per request from Peter Eisentraut.
Diffstat (limited to 'src/include/access/parallel.h')
-rw-r--r--src/include/access/parallel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/parallel.h b/src/include/access/parallel.h
index 8274f841b68..5f23f18f43b 100644
--- a/src/include/access/parallel.h
+++ b/src/include/access/parallel.h
@@ -41,7 +41,7 @@ typedef struct ParallelContext
ErrorContextCallback *error_context_stack;
shm_toc_estimator estimator;
dsm_segment *seg;
- void *private;
+ void *private_memory;
shm_toc *toc;
ParallelWorkerInfo *worker;
} ParallelContext;