pgsql: Avoid core dump in _outPathInfo() for Path without a parent RelO

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Avoid core dump in _outPathInfo() for Path without a parent RelO
Date: 2014-10-18 02:33:44
Message-ID: E1XfJpw-0006E4-C0@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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.

Branch
------
REL9_3_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/d4f5cf5ce5106504316e5d890782091567a02d57

Modified Files
--------------
src/backend/nodes/outfuncs.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2014-10-18 02:33:58 pgsql: Avoid core dump in _outPathInfo() for Path without a parent RelO
Previous Message Fujii Masao 2014-10-17 18:09:01 Re: pgsql: Add support for managing physical replication slots to pg_receiv