Duplicate expansion of "direction" from FETCH's synopsis into MOVE
authorAlvaro Herrera
Mon, 4 Apr 2011 16:03:41 +0000 (12:03 -0400)
committerAlvaro Herrera
Mon, 4 Apr 2011 16:04:43 +0000 (12:04 -0400)
doc/src/sgml/ref/fetch.sgml
doc/src/sgml/ref/move.sgml

index 1e3cbea08fd602603eef1a17a830253fc050f4df..b78fed267b93bd687e2aa17294ff824554caeb85 100644 (file)
@@ -25,6 +25,7 @@ PostgreSQL documentation
  
 
  
+
 
 FETCH [ direction [ FROM | IN ] ] cursor_name
 
index 209d5fd8231e25e78073b6006ad480f5cd204677..231f537c860f5a2525154a7c5b62e5855c0c8b5f 100644 (file)
@@ -25,8 +25,26 @@ PostgreSQL documentation
  
 
  
+
 
 MOVE [ direction [ FROM | IN ] ] cursor_name
+
+where direction can be empty or one of:
+
+    NEXT
+    PRIOR
+    FIRST
+    LAST
+    ABSOLUTE count
+    RELATIVE count
+    count
+    ALL
+    FORWARD
+    FORWARD count
+    FORWARD ALL
+    BACKWARD
+    BACKWARD count
+    BACKWARD ALL