aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/backend/nodes/gen_node_support.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/nodes/gen_node_support.pl b/src/backend/nodes/gen_node_support.pl
index 40994b53fb2..f6229089cd1 100644
--- a/src/backend/nodes/gen_node_support.pl
+++ b/src/backend/nodes/gen_node_support.pl
@@ -1309,16 +1309,16 @@ _jumble${n}(JumbleState *jstate, Node *node)
}
}
- # node type
if ($query_jumble_custom)
{
# Custom function that applies to one field of a node.
- print $jff "\tJUMBLE_CUSTOM($n, $f);\n";
+ print $jff "\tJUMBLE_CUSTOM($n, $f);\n"
+ unless $query_jumble_ignore;
}
elsif (($t =~ /^(\w+)\*$/ or $t =~ /^struct\s+(\w+)\*$/)
and elem $1, @node_types)
{
- # Squash constants if requested.
+ # Node type. Squash constants if requested.
if ($query_jumble_squash)
{
print $jff "\tJUMBLE_ELEMENTS($f);\n"