diff options
author | Bruce Momjian <bruce@momjian.us> | 2007-06-11 01:51:50 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2007-06-11 01:51:50 +0000 |
commit | 5f2bda15eb52acf5c877172e5d77e70ac06df905 (patch) | |
tree | 77df6336b015e882cfb81a28b1b496bab0ce34e2 | |
parent | 6808f1b1de0ebcd4af558ba84c3226b2027f55ea (diff) | |
download | postgresql-5f2bda15eb52acf5c877172e5d77e70ac06df905.tar.gz postgresql-5f2bda15eb52acf5c877172e5d77e70ac06df905.zip |
Done:
< o Allow UPDATE/DELETE WHERE CURRENT OF cursor
<
< This requires using the row ctid to map cursor rows back to the
< original heap row. This become more complicated if WITH HOLD cursors
< are to be supported because WITH HOLD cursors have a copy of the row
< and no FOR UPDATE lock.
< http://archives.postgresql.org/pgsql-hackers/2007-01/msg01014.php
<
> o -Allow UPDATE/DELETE WHERE CURRENT OF cursor
-rw-r--r-- | doc/TODO | 11 | ||||
-rw-r--r-- | doc/src/FAQ/TODO.html | 10 |
2 files changed, 4 insertions, 17 deletions
@@ -1,7 +1,7 @@ PostgreSQL TODO List ==================== Current maintainer: Bruce Momjian (bruce@momjian.us) -Last updated: Fri Jun 8 14:45:14 EDT 2007 +Last updated: Sun Jun 10 21:51:20 EDT 2007 The most recent version of this document can be viewed at http://www.postgresql.org/docs/faqs.TODO.html. @@ -679,14 +679,7 @@ SQL Commands * CURSOR - o Allow UPDATE/DELETE WHERE CURRENT OF cursor - - This requires using the row ctid to map cursor rows back to the - original heap row. This become more complicated if WITH HOLD cursors - are to be supported because WITH HOLD cursors have a copy of the row - and no FOR UPDATE lock. - http://archives.postgresql.org/pgsql-hackers/2007-01/msg01014.php - + o -Allow UPDATE/DELETE WHERE CURRENT OF cursor o Prevent DROP TABLE from dropping a row referenced by its own open cursor? diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html index 7e9f745dd10..5294b6716ee 100644 --- a/doc/src/FAQ/TODO.html +++ b/doc/src/FAQ/TODO.html @@ -8,7 +8,7 @@ <body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF"> <h1><a name="section_1">PostgreSQL TODO List</a></h1> <p>Current maintainer: Bruce Momjian (<a href="mailto:bruce@momjian.us">bruce@momjian.us</a>)<br/> -Last updated: Fri Jun 8 14:45:14 EDT 2007 +Last updated: Sun Jun 10 21:51:20 EDT 2007 </p> <p>The most recent version of this document can be viewed at<br/> <a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>. @@ -606,13 +606,7 @@ first. There is also a developer's wiki at<br/> </li></ul> </li><li>CURSOR <ul> - <li>Allow UPDATE/DELETE WHERE CURRENT OF cursor -<p> This requires using the row ctid to map cursor rows back to the - original heap row. This become more complicated if WITH HOLD cursors - are to be supported because WITH HOLD cursors have a copy of the row - and no FOR UPDATE lock. - <a href="http://archives.postgresql.org/pgsql-hackers/2007-01/msg01014.php">http://archives.postgresql.org/pgsql-hackers/2007-01/msg01014.php</a> -</p> + <li>-<em>Allow UPDATE/DELETE WHERE CURRENT OF cursor</em> </li><li>Prevent DROP TABLE from dropping a row referenced by its own open cursor? </li></ul> |