summaryrefslogtreecommitdiff
path: root/src/pl/plpython/sql/plpython_subtransaction.sql
Commit message (Collapse)AuthorAgeFilesLines
* plpython: Add SPI cursor supportPeter Eisentraut2011-12-051-0/+52
| | | | | | | 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
* PL/Python explicit subtransactionsPeter Eisentraut2011-02-271-0/+244
Adds a context manager, obtainable by plpy.subtransaction(), to run a group of statements in a subtransaction. Jan Urbański, reviewed by Steve Singer, additional scribbling by me