<title>Return Value</title>
<para>
<symbol>true</symbol> or <symbol>false</symbol> to indicate if the
- <parameter>plan</parameter> can produce a cursor or not.
- If the <parameter>plan</parameter> is <symbol>NULL</symbol> or invalid,
- <varname>SPI_result</varname> is set to <symbol>SPI_ERROR_ARGUMENT</symbol>
+ <parameter>plan</parameter> can produce a cursor or not, with
+ <varname>SPI_result</varname> set to zero.
+ If it is not possible to determine the answer (for example,
+ if the <parameter>plan</parameter> is <symbol>NULL</symbol> or invalid,
+ or if called when not connected to SPI), then
+ <varname>SPI_result</varname> is set to a suitable error code
and <symbol>false</symbol> is returned.
</para>
</refsect1>
<title>Return Value</title>
<para>
- pointer to portal containing the cursor, or <symbol>NULL</symbol>
- on error
+ Pointer to portal containing the cursor. Note there is no error
+ return convention; any error will be reported via <function>elog</>.
</para>
</refsect1>
</refentry>
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;
Assert(portal->strategy != PORTAL_MULTI_QUERY);
+ /* Pop the SPI stack */
+ _SPI_end_call(false);
+
/* Return the created portal */
return portal;
}
}
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 */
ReleaseCachedPlan(cplan, true);
}
+ _SPI_end_call(false);
+ SPI_result = 0;
+
/* Does it return tuples? */
if (plansource->resultDesc)
return true;