diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2011-12-05 19:52:15 +0200 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2011-12-05 19:52:15 +0200 |
| commit | 89e850e6fda9e4e441712012abe971fe938d595a (patch) | |
| tree | 4ad184525069fbd25f89879c2613403f2212d869 /src/pl/plpython/expected/plpython_test.out | |
| parent | e6d9e2106f0dda459063126d07967df197b7b5fe (diff) | |
| download | postgresql-89e850e6fda9e4e441712012abe971fe938d595a.tar.gz | |
plpython: Add SPI cursor support
Add a function plpy.cursor that is similar to plpy.execute but uses an
SPI cursor to avoid fetching the entire result set into memory.
Jan UrbaĆski, reviewed by Steve Singer
Diffstat (limited to 'src/pl/plpython/expected/plpython_test.out')
| -rw-r--r-- | src/pl/plpython/expected/plpython_test.out | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pl/plpython/expected/plpython_test.out b/src/pl/plpython/expected/plpython_test.out index f2dda66532..a884fc0e27 100644 --- a/src/pl/plpython/expected/plpython_test.out +++ b/src/pl/plpython/expected/plpython_test.out @@ -43,9 +43,9 @@ contents.sort() return ", ".join(contents) $$ LANGUAGE plpythonu; select module_contents(); - module_contents ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- - Error, Fatal, SPIError, debug, error, execute, fatal, info, log, notice, prepare, quote_ident, quote_literal, quote_nullable, spiexceptions, subtransaction, warning + module_contents +------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ + Error, Fatal, SPIError, cursor, debug, error, execute, fatal, info, log, notice, prepare, quote_ident, quote_literal, quote_nullable, spiexceptions, subtransaction, warning (1 row) CREATE FUNCTION elog_test() RETURNS void |
