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

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 16bbe5a3cc937096a4ad0dab050360eb87e0c813
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2014-10-18T02:33:04Z
Releases: 9.4.0
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.

Files

PathChange+/−
src/backend/nodes/outfuncs.c modified +4 −1