Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Update copyrights in source tree to 2008. | Bruce Momjian | 2008-01-01 | |
| | ||||
* | Re-run pgindent with updated list of typedefs. (Updated README should | Bruce Momjian | 2007-11-15 | |
| | | | | avoid this problem in the future.) | |||
* | pgindent run for 8.3. | Bruce Momjian | 2007-11-15 | |
| | ||||
* | Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsql | Tom Lane | 2007-06-11 | |
| | | | | | | | with a plpgsql-defined cursor. The underlying mechanism for this is that the main SQL engine will now take "WHERE CURRENT OF $n" where $n is a refcursor parameter. Not sure if we should document that fact or consider it an implementation detail. Per discussion with Pavel Stehule. | |||
* | Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard. | Tom Lane | 2007-06-11 | |
Along the way, allow FOR UPDATE in non-WITH-HOLD cursors; there may once have been a reason to disallow that, but it seems to work now, and it's really rather necessary if you want to select a row via a cursor and then update it in a concurrent-safe fashion. Original patch by Arul Shaji, rather heavily editorialized by Tom Lane. |