pgsql: Fix inline_set_returning_function() to preserve the invalItems l

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix inline_set_returning_function() to preserve the invalItems l
Date: 2010-10-25 17:05:11
Message-ID: E1PAQTv-0006dT-Dy@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix inline_set_returning_function() to preserve the invalItems list properly.

This avoids a possible crash when inlining a SRF whose argument list
contains a reference to an inline-able user function. The crash is quite
reproducible with CLOBBER_FREED_MEMORY enabled, but would be less certain
in a production build. Problem introduced in 9.0 by the named-arguments
patch, which requires invoking eval_const_expressions() before we can try
to inline a SRF. Per report from Brendan Jurd.

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/gitweb?p=postgresql.git;a=commitdiff;h=113082c6579f3310ecaa6a5cba2e24a0ce325b5d

Modified Files
--------------
src/backend/optimizer/util/clauses.c | 23 ++++++++++++++++++++++-
1 files changed, 22 insertions(+), 1 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2010-10-25 18:25:52 pgsql: Fix overly-enthusiastic Assert in printing of Param reference ex
Previous Message Alvaro Herrera 2010-10-25 13:05:46 pgsql: find -path is not portable, so use grep -v instead.