Insert CommandCounterIncrement call into SPI_cursor_open.

This commit is contained in:
Tom Lane 2001-11-21 18:30:58 +00:00
parent dcdf9119a8
commit 82bad53cf5

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/spi.c,v 1.62 2001/11/10 23:51:14 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/executor/spi.c,v 1.63 2001/11/21 18:30:58 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -730,6 +730,9 @@ SPI_cursor_open(char *name, void *plan, Datum *Values, char *Nulls)
else if (queryTree->into != NULL) else if (queryTree->into != NULL)
elog(ERROR, "plan in SPI_cursor_open() must NOT be a SELECT INTO"); elog(ERROR, "plan in SPI_cursor_open() must NOT be a SELECT INTO");
/* Increment CommandCounter to see changes made by now */
CommandCounterIncrement();
/* Reset SPI result */ /* Reset SPI result */
SPI_processed = 0; SPI_processed = 0;
SPI_tuptable = NULL; SPI_tuptable = NULL;