pgsql: Fix another Assert issue exposed by CLOBBER_CACHE_ALWAYS.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix another Assert issue exposed by CLOBBER_CACHE_ALWAYS.
Date: 2011-09-19 03:46:19
Message-ID: E1R5UoF-0003AW-RC@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix another Assert issue exposed by CLOBBER_CACHE_ALWAYS.

plpgsql's exec_stmt_execsql was Assert'ing that a CachedPlanSource was
is_valid immediately after exec_prepare_plan. The risk factor in this case
is that after building the prepared statement, exec_prepare_plan calls
exec_simple_check_plan, which might try to generate a generic plan --- and
with CLOBBER_CACHE_ALWAYS or other unusual causes of invalidation, that
could result in an invalidation. However, that path could only be taken
for a SELECT query, for which we need not set mod_stmt. So in this case
I think it's best to just remove the Assert; it's okay to look at a
slightly-stale querytree for what we need here. Per buildfarm testing.

Branch
------
master

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

Modified Files
--------------
src/pl/plpgsql/src/pl_exec.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2011-09-20 17:24:45 pgsql: Improve reporting of newlocale() failures in CREATE COLLATION.
Previous Message Tom Lane 2011-09-17 05:48:37 pgsql: Fix Assert failure in new plancache code.