diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2018-06-10 18:24:34 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2018-06-10 18:24:34 -0400 |
commit | 321f648a312bd188b7a5c33a0548a57f45dfbf42 (patch) | |
tree | 6b59b18305571e2bf133b5b2015eb34a93e8f988 /src/backend/nodes/copyfuncs.c | |
parent | 939449de0e571b8c0b07674bb7095e06e93cc059 (diff) | |
download | postgresql-321f648a312bd188b7a5c33a0548a57f45dfbf42.tar.gz postgresql-321f648a312bd188b7a5c33a0548a57f45dfbf42.zip |
Assorted cosmetic cleanup of run-time-partition-pruning code.
Use "subplan" rather than "subnode" to refer to the child plans of
a partitioning Append; this seems a bit more specific and hence
clearer. Improve assorted comments. No non-cosmetic changes.
David Rowley and Tom Lane
Discussion: https://postgr.es/m/CAFj8pRBjrufA3ocDm8o4LPGNye9Y+pm1b9kCwode4X04CULG3g@mail.gmail.com
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index 0e08dcaa3e6..1c12075b017 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -1186,7 +1186,7 @@ _copyPartitionPruneInfo(const PartitionPruneInfo *from) COPY_BITMAPSET_FIELD(present_parts); COPY_SCALAR_FIELD(nparts); COPY_SCALAR_FIELD(nexprs); - COPY_POINTER_FIELD(subnode_map, from->nparts * sizeof(int)); + COPY_POINTER_FIELD(subplan_map, from->nparts * sizeof(int)); COPY_POINTER_FIELD(subpart_map, from->nparts * sizeof(int)); COPY_POINTER_FIELD(hasexecparam, from->nexprs * sizeof(bool)); COPY_SCALAR_FIELD(do_initial_prune); |