Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e4fbf22
)
Revert "Move new structure member to the end."
author
Robert Haas
<rhaas@postgresql.org>
Fri, 27 Oct 2017 15:29:20 +0000
(17:29 +0200)
committer
Robert Haas
<rhaas@postgresql.org>
Fri, 27 Oct 2017 15:29:20 +0000
(17:29 +0200)
This reverts commit
94d622f27be6d48e61a68496da4f2efb06fe8746
. That
commit was supposed to get pushed to REL_10_STABLE, but I messed
up.
src/include/nodes/execnodes.h
patch
|
blob
|
blame
|
history
diff --git
a/src/include/nodes/execnodes.h
b/src/include/nodes/execnodes.h
index c9c10f05dd919bab485b0f47880a1e63147bbe21..8698c8a50c0ba5963becff5c9efea16da3121650 100644
(file)
--- a/
src/include/nodes/execnodes.h
+++ b/
src/include/nodes/execnodes.h
@@
-507,10
+507,10
@@
typedef struct EState
bool *es_epqTupleSet; /* true if EPQ tuple is provided */
bool *es_epqScanDone; /* true if EPQ tuple has been fetched */
+ bool es_use_parallel_mode; /* can we use parallel workers? */
+
/* The per-query shared memory area to use for parallel execution. */
struct dsa_area *es_query_dsa;
-
- bool es_use_parallel_mode; /* can we use parallel workers? */
} EState;