diff options
author | Bruce Momjian <bruce@momjian.us> | 2004-03-17 01:05:10 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2004-03-17 01:05:10 +0000 |
commit | d245b6bd9f55f33f851f6501f02a6e9cb1305e75 (patch) | |
tree | 1fff4901d87171ad75dd77c1ff1c8d1f18d81e18 /src/include/executor | |
parent | c1352052ef1d4eeb2eb1d822a207ddc2d106cb13 (diff) | |
download | postgresql-d245b6bd9f55f33f851f6501f02a6e9cb1305e75.tar.gz postgresql-d245b6bd9f55f33f851f6501f02a6e9cb1305e75.zip |
Document SPI_push() and SPI_pop().
Diffstat (limited to 'src/include/executor')
-rw-r--r-- | src/include/executor/spi.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/executor/spi.h b/src/include/executor/spi.h index 6d0ce059a20..ac2b494b532 100644 --- a/src/include/executor/spi.h +++ b/src/include/executor/spi.h @@ -2,7 +2,7 @@ * * spi.h * - * $PostgreSQL: pgsql/src/include/executor/spi.h,v 1.42 2004/03/05 00:47:01 momjian Exp $ + * $PostgreSQL: pgsql/src/include/executor/spi.h,v 1.43 2004/03/17 01:05:10 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -81,8 +81,8 @@ extern int SPI_connect(void); extern int SPI_finish(void); extern void SPI_push(void); extern void SPI_pop(void); -extern int SPI_exec(const char *src, int tcount); -extern int SPI_execp(void *plan, Datum *values, const char *Nulls, +extern int SPI_exec(const char *src, int tcount); +extern int SPI_execp(void *plan, Datum *values, const char *Nulls, int tcount); extern int SPI_execp_current(void *plan, Datum *values, const char *Nulls, bool useCurrentSnapshot, int tcount); |