diff options
Diffstat (limited to 'src/backend/executor/spi.c')
-rw-r--r-- | src/backend/executor/spi.c | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/backend/executor/spi.c b/src/backend/executor/spi.c index ae083f7225d..a23c4d017a8 100644 --- a/src/backend/executor/spi.c +++ b/src/backend/executor/spi.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/spi.c,v 1.187 2008/01/01 19:45:49 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/executor/spi.c,v 1.188 2008/02/12 04:09:44 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -886,6 +886,10 @@ SPI_cursor_open(const char *name, SPIPlanPtr plan, Assert(list_length(plan->plancache_list) == 1); plansource = (CachedPlanSource *) linitial(plan->plancache_list); + /* Push the SPI stack */ + if (_SPI_begin_call(false) < 0) + elog(ERROR, "SPI_cursor_open called while not connected"); + /* Reset SPI result (note we deliberately don't touch lastoid) */ SPI_processed = 0; SPI_tuptable = NULL; @@ -1041,6 +1045,9 @@ SPI_cursor_open(const char *name, SPIPlanPtr plan, Assert(portal->strategy != PORTAL_MULTI_QUERY); + /* Pop the SPI stack */ + _SPI_end_call(false); + /* Return the created portal */ return portal; } @@ -1180,9 +1187,17 @@ SPI_is_cursor_plan(SPIPlanPtr plan) } if (list_length(plan->plancache_list) != 1) + { + SPI_result = 0; return false; /* not exactly 1 pre-rewrite command */ + } plansource = (CachedPlanSource *) linitial(plan->plancache_list); + /* Need _SPI_begin_call in case replanning invokes SPI-using functions */ + SPI_result = _SPI_begin_call(false); + if (SPI_result < 0) + return false; + if (plan->saved) { /* Make sure the plan is up to date */ @@ -1190,6 +1205,9 @@ SPI_is_cursor_plan(SPIPlanPtr plan) ReleaseCachedPlan(cplan, true); } + _SPI_end_call(false); + SPI_result = 0; + /* Does it return tuples? */ if (plansource->resultDesc) return true; |