From 321f648a312bd188b7a5c33a0548a57f45dfbf42 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sun, 10 Jun 2018 18:24:34 -0400 Subject: 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 --- src/backend/nodes/outfuncs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/nodes/outfuncs.c') diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index 19879aeb463..979d523e00a 100644 --- a/src/backend/nodes/outfuncs.c +++ b/src/backend/nodes/outfuncs.c @@ -1023,9 +1023,9 @@ _outPartitionPruneInfo(StringInfo str, const PartitionPruneInfo *node) WRITE_INT_FIELD(nparts); WRITE_INT_FIELD(nexprs); - appendStringInfoString(str, " :subnode_map"); + appendStringInfoString(str, " :subplan_map"); for (i = 0; i < node->nparts; i++) - appendStringInfo(str, " %d", node->subnode_map[i]); + appendStringInfo(str, " %d", node->subplan_map[i]); appendStringInfoString(str, " :subpart_map"); for (i = 0; i < node->nparts; i++) -- cgit v1.2.3