mirror of https://github.com/postgres/postgres
Insert CommandCounterIncrement call into SPI_cursor_open.
This commit is contained in:
parent
dcdf9119a8
commit
82bad53cf5
|
@ -8,7 +8,7 @@
|
|||
*
|
||||
*
|
||||
* 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)
|
||||
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 */
|
||||
SPI_processed = 0;
|
||||
SPI_tuptable = NULL;
|
||||
|
|
Loading…
Reference in New Issue