From: Bruce Momjian Date: Sun, 26 Oct 2003 04:50:16 +0000 (+0000) Subject: Update MOVE/FETCH release note mention. X-Git-Tag: REL9_0_0~14027 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=b3a10a88d7c5855a16e8e6d20813d355471b4cd1;p=pg-rex%2Fsyncrep.git Update MOVE/FETCH release note mention. --- diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index 05ad380bdd..8a30a852e9 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -1,5 +1,5 @@ @@ -101,8 +101,9 @@ required for those wishing to migrate data from any previous release. and error codes have been added. ANSI inner joins may behave differently because they are now better optimized A number of server variables have been renamed for clarity - MOVE/FETCH 0 now does nothing; return value of MOVE/FETCH 1/0 - varies based on the current offset in the cursor + MOVE/FETCH 0 now does nothing + MOVE/FETCH now returns the actual number of rows moved/fetched, or zero + if at the beginning/end of the cursor COPY now can process carriage-return/line-feed and carriage-return terminated files. Literal carriage-returns and line-feeds are no longer accepted as data values; use \r and \n instead. @@ -248,9 +249,9 @@ required for those wishing to migrate data from any previous release. Add ON COMMIT clause to CREATE TABLE for temp tables (Gavin) Allow cursors outside transactions using WITH HOLD (Neil) -Make MOVE/FETCH 0 actually move/fetch 0 (Bruce) -Cause FETCH 1 to return the next cursor row number, or zero if at - beginning/end of cursor, per SQL spec (Bruce) +Make MOVE/FETCH 0 now does nothing (Bruce) +Cause MOVE/FETCH now returns the number of rows moved/fetched, or zero if at the beginning/end of cursor, + per SQL spec (Bruce) Have MOVE return 0 or 1 depending on cursor position (Bruce) Properly handle SCROLL with cursors, or report an error (Neil) Implement SQL92-compatible FIRST, LAST, ABSOLUTE n, RELATIVE n options