From 8c250f3741f4f897362de32a03f56726cf3f9774 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Mon, 4 Apr 2011 12:03:41 -0400 Subject: [PATCH] Duplicate expansion of "direction" from FETCH's synopsis into MOVE --- doc/src/sgml/ref/fetch.sgml | 1 + doc/src/sgml/ref/move.sgml | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/doc/src/sgml/ref/fetch.sgml b/doc/src/sgml/ref/fetch.sgml index 1e3cbea08f..b78fed267b 100644 --- a/doc/src/sgml/ref/fetch.sgml +++ b/doc/src/sgml/ref/fetch.sgml @@ -25,6 +25,7 @@ PostgreSQL documentation + FETCH [ direction [ FROM | IN ] ] cursor_name diff --git a/doc/src/sgml/ref/move.sgml b/doc/src/sgml/ref/move.sgml index 209d5fd823..231f537c86 100644 --- a/doc/src/sgml/ref/move.sgml +++ b/doc/src/sgml/ref/move.sgml @@ -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 -- 2.40.0