| Commit message (Expand) | Author | Age | Files | Lines |
| * | Insert conditional SPI_push/SPI_pop calls into InputFunctionCall, | Tom Lane | 2009-01-07 | 1 | -1/+26 |
| * | Fix executor/spi.h to follow our usual conventions for include files, ie, | Tom Lane | 2009-01-07 | 1 | -1/+9 |
| * | Include a pointer to the query's source text in QueryDesc structs. This is | Tom Lane | 2009-01-02 | 1 | -1/+2 |
| * | Update copyright for 2009. | Bruce Momjian | 2009-01-01 | 1 | -2/+2 |
| * | Remove pg_plan_queries()'s now-useless needSnapshot parameter. It's useless | Tom Lane | 2008-12-13 | 1 | -3/+2 |
| * | Clean up the API for DestReceiver objects by eliminating the assumption | Tom Lane | 2008-11-30 | 1 | -5/+4 |
| * | Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple, | Tom Lane | 2008-11-02 | 1 | -6/+6 |
| * | Fix SPI_getvalue and SPI_getbinval to range-check the given attribute number | Tom Lane | 2008-10-16 | 1 | -3/+3 |
| * | Fix caching of foreign-key-checking queries so that when a replan is needed, | Tom Lane | 2008-09-15 | 1 | -1/+31 |
| * | Adjust things so that the query_string of a cached plan and the sourceText of | Tom Lane | 2008-07-18 | 1 | -5/+3 |
| * | Refactor SPI_cursor_open/SPI_cursor_open_with_args so that the latter sets | Tom Lane | 2008-06-01 | 1 | -60/+80 |
| * | Improve snapshot manager by keeping explicit track of snapshots. | Alvaro Herrera | 2008-05-12 | 1 | -174/+179 |
| * | Restructure some header files a bit, in particular heapam.h, by removing some | Alvaro Herrera | 2008-05-12 | 1 | -1/+2 |
| * | Revert my bad decision of about a year ago to make PortalDefineQuery | Tom Lane | 2008-04-02 | 1 | -4/+18 |
| * | Add SPI-level support for executing SQL commands with one-time-use plans, | Tom Lane | 2008-04-01 | 1 | -39/+169 |
| * | Rename snapmgmt.c/h to snapmgr.c/h, for consistency with other files. | Alvaro Herrera | 2008-03-26 | 1 | -2/+2 |
| * | Separate snapshot management code from tuple visibility code, create a | Alvaro Herrera | 2008-03-26 | 1 | -1/+2 |
| * | Add a couple of missing FreeQueryDesc calls. Noticed while testing a | Alvaro Herrera | 2008-03-20 | 1 | -2/+4 |
| * | Fix SPI_cursor_open() and SPI_is_cursor_plan() to push the SPI stack before | Tom Lane | 2008-02-12 | 1 | -1/+19 |
| * | Update copyrights in source tree to 2008. | Bruce Momjian | 2008-01-01 | 1 | -2/+2 |
| * | Avoid incrementing the CommandCounter when CommandCounterIncrement is called | Tom Lane | 2007-11-30 | 1 | -2/+2 |
| * | Repair bug that allowed RevalidateCachedPlan to attempt to rebuild a cached | Tom Lane | 2007-11-30 | 1 | -9/+9 |
| * | pgindent run for 8.3. | Bruce Momjian | 2007-11-15 | 1 | -24/+24 |
| * | Tweak new error messages to match the actual syntax of DECLARE CURSOR. | Tom Lane | 2007-10-25 | 1 | -2/+2 |
| * | Disallow scrolling of FOR UPDATE/FOR SHARE cursors, so as to avoid problems | Tom Lane | 2007-10-24 | 1 | -1/+18 |
| * | HOT updates. When we update a tuple without changing any of its indexed | Tom Lane | 2007-09-20 | 1 | -1/+3 |
| * | Repair problems occurring when multiple RI updates have to be done to the same | Tom Lane | 2007-08-15 | 1 | -15/+23 |
| * | Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve the | Tom Lane | 2007-04-27 | 1 | -3/+5 |
| * | Make plancache store cursor options so it can pass them to planner during | Tom Lane | 2007-04-16 | 1 | -1/+2 |
| * | Support scrollable cursors (ie, 'direction' clause in FETCH) in plpgsql. | Tom Lane | 2007-04-16 | 1 | -16/+25 |
| * | Expose more cursor-related functionality in SPI: specifically, allow | Tom Lane | 2007-04-16 | 1 | -12/+51 |
| * | Make _SPI_execute_plan pass the query source string down to ProcessUtility | Tom Lane | 2007-03-25 | 1 | -2/+2 |
| * | Remove the prohibition on executing cursor commands through SPI_execute. | Tom Lane | 2007-03-25 | 1 | -10/+1 |
| * | SPI_cursor_open failed to enforce that only read-only queries could be | Tom Lane | 2007-03-17 | 1 | -1/+25 |
| * | Make use of plancache module for SPI plans. In particular, since plpgsql | Tom Lane | 2007-03-15 | 1 | -120/+282 |
| * | First phase of plan-invalidation project: create a plan cache management | Tom Lane | 2007-03-13 | 1 | -3/+8 |
| * | Remove the Query structure from the executor's API. This allows us to stop | Tom Lane | 2007-02-20 | 1 | -82/+67 |
| * | Enable another five tuple status bits by using the high bits of the | Bruce Momjian | 2007-01-09 | 1 | -3/+3 |
| * | Update CVS HEAD for 2007 copyright. Back branches are typically not | Bruce Momjian | 2007-01-05 | 1 | -2/+2 |
| * | Repair bug #2836: SPI_execute_plan returned zero if none of the querytrees | Tom Lane | 2006-12-26 | 1 | -2/+9 |
| * | Avoid double free of _SPI_current->tuptable. AtEOSubXact_SPI() now tries to | Tom Lane | 2006-12-08 | 1 | -1/+7 |
| * | Prevent intratransaction memory leak when a subtransaction is aborted | Tom Lane | 2006-11-21 | 1 | -1/+14 |
| * | pgindent run for 8.2. | Bruce Momjian | 2006-10-04 | 1 | -9/+9 |
| * | Clean up logging for extended-query-protocol operations, as per my recent | Tom Lane | 2006-09-07 | 1 | -2/+1 |
| * | Change processing of extended-Query mode so that an unnamed statement | Tom Lane | 2006-09-06 | 1 | -1/+3 |
| * | Revert FETCH/MOVE int64 patch. Was using incorrect checks for | Bruce Momjian | 2006-09-03 | 1 | -6/+6 |
| * | Change FETCH/MOVE to use int8. | Bruce Momjian | 2006-09-02 | 1 | -6/+6 |
| * | Now bind displays prepare as detail, and execute displays prepare and | Bruce Momjian | 2006-08-29 | 1 | -1/+2 |
| * | Add new return codes SPI_OK_INSERT_RETURNING etc to the SPI API. | Tom Lane | 2006-08-27 | 1 | -5/+24 |
| * | Fix oversight in initial implementation of PORTAL_ONE_RETURNING mode: we | Tom Lane | 2006-08-14 | 1 | -38/+49 |