Commit 5ba062ee authored by Tom Lane's avatar Tom Lane

Avoid core dump in _outPathInfo() for Path without a parent RelOptInfo.

Nearly all Paths have parents, but a ResultPath representing an empty FROM
clause does not.  Avoid a core dump in such cases.  I believe this is only
a hazard for debugging usage, not for production, else we'd have heard
about it before.  Nonetheless, back-patch to 9.1 where the troublesome code
was introduced.  Noted while poking at bug #11703.
parent 504c7175
...@@ -1477,7 +1477,10 @@ _outPathInfo(StringInfo str, const Path *node) ...@@ -1477,7 +1477,10 @@ _outPathInfo(StringInfo str, const Path *node)
{ {
WRITE_ENUM_FIELD(pathtype, NodeTag); WRITE_ENUM_FIELD(pathtype, NodeTag);
appendStringInfoString(str, " :parent_relids "); appendStringInfoString(str, " :parent_relids ");
if (node->parent)
_outBitmapset(str, node->parent->relids); _outBitmapset(str, node->parent->relids);
else
_outBitmapset(str, NULL);
appendStringInfoString(str, " :required_outer "); appendStringInfoString(str, " :required_outer ");
if (node->param_info) if (node->param_info)
_outBitmapset(str, node->param_info->ppi_req_outer); _outBitmapset(str, node->param_info->ppi_req_outer);
......
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