pgsql: Do a conditional SPI_push/SPI_pop when replanning a query in

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Do a conditional SPI_push/SPI_pop when replanning a query in
Date: 2009-07-14 15:38:03
Message-ID: 20090714153803.2937B753336@cvs.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Do a conditional SPI_push/SPI_pop when replanning a query in
RevalidateCachedPlan. This is to avoid a "SPI_ERROR_CONNECT" failure when
the planner calls a SPI-using function and we are already inside one.
The alternative fix is to expect callers of RevalidateCachedPlan to do this,
which seems likely to result in additional hard-to-detect bugs of omission.
Per reports from Frank van Vugt and Marek Lewczuk.

Back-patch to 8.3. It's much harder to trigger the bug in 8.3, due to a
smaller set of cases in which plans can be invalidated, but it could happen.
(I think perhaps only a SI reset event could make 8.3 fail here, but that's
certainly within the realm of possibility.)

Tags:
----
REL8_3_STABLE

Modified Files:
--------------
pgsql/src/backend/utils/cache:
plancache.c (r1.15.2.2 -> r1.15.2.3)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/cache/plancache.c?r1=1.15.2.2&r2=1.15.2.3)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2009-07-14 20:24:10 pgsql: Tweak the core scanner so that it can be used by plpgsql too.
Previous Message Tom Lane 2009-07-14 15:37:55 pgsql: Do a conditional SPI_push/SPI_pop when replanning a query in