Commit ef310950 authored by Noah Misch's avatar Noah Misch

Reconcile nodes/*funcs.c with PostgreSQL 11 work.

This covers new fields in two outfuncs.c functions having no readfuncs.c
counterpart.  Thus, this changes only debugging output.
parent 0039049f
...@@ -1920,6 +1920,7 @@ _outAppendPath(StringInfo str, const AppendPath *node) ...@@ -1920,6 +1920,7 @@ _outAppendPath(StringInfo str, const AppendPath *node)
WRITE_NODE_FIELD(partitioned_rels); WRITE_NODE_FIELD(partitioned_rels);
WRITE_NODE_FIELD(subpaths); WRITE_NODE_FIELD(subpaths);
WRITE_INT_FIELD(first_partial_path);
} }
static void static void
...@@ -2224,6 +2225,7 @@ _outHashPath(StringInfo str, const HashPath *node) ...@@ -2224,6 +2225,7 @@ _outHashPath(StringInfo str, const HashPath *node)
WRITE_NODE_FIELD(path_hashclauses); WRITE_NODE_FIELD(path_hashclauses);
WRITE_INT_FIELD(num_batches); WRITE_INT_FIELD(num_batches);
WRITE_FLOAT_FIELD(inner_rows_total, "%.0f");
} }
static void static void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment