From d245b6bd9f55f33f851f6501f02a6e9cb1305e75 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 17 Mar 2004 01:05:10 +0000 Subject: Document SPI_push() and SPI_pop(). --- doc/src/sgml/spi.sgml | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 63 insertions(+), 1 deletion(-) (limited to 'doc/src') diff --git a/doc/src/sgml/spi.sgml b/doc/src/sgml/spi.sgml index ad8a5f084f9..c87a136bdd4 100644 --- a/doc/src/sgml/spi.sgml +++ b/doc/src/sgml/spi.sgml @@ -1,5 +1,5 @@ @@ -199,6 +199,68 @@ int SPI_finish(void) + + + SPI_push + + + + SPI_push + pushes SPI stack to allow recursive SPI calls + + + SPI_push + + + +void SPI_push(void) + + + + + Description + + + SPI_push pushes a new environment on to the + SPI call stack, allowing recursive calls to use a new environment. + + + + + + + + + + SPI_pop + + + + SPI_pop + pops SPI stack to allow recursive SPI calls + + + SPI_pop + + + +void SPI_pop(void) + + + + + Description + + + SPI_pop pops the previous environment from the + SPI call stack. For use when returning from recursive SPI calls. + + + + + + + SPI_exec -- cgit v1.2.3