diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-10-27 17:29:52 +0200 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-10-27 17:29:52 +0200 |
commit | 69fc2ca4ccdc70c6f9bd7909a771b0983017cb5c (patch) | |
tree | 30a42c3531c710c1b61f653832aeeeaa45514548 | |
parent | 7b233fce1bb679fbc4adf79b4a06c85aedda8cd1 (diff) | |
download | postgresql-69fc2ca4ccdc70c6f9bd7909a771b0983017cb5c.tar.gz postgresql-69fc2ca4ccdc70c6f9bd7909a771b0983017cb5c.zip |
Move new structure member to the end.
Reduces ABI breakage. Per Tom Lane.
Discussion: http://postgr.es/m/4035.1509113974@sss.pgh.pa.us
-rw-r--r-- | src/include/nodes/execnodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/execnodes.h b/src/include/nodes/execnodes.h index 4f5da00c863..fc7f6e20f2b 100644 --- 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; |