From f2321a3f37b74b42d20ec787afb7ee4a29655a3e Mon Sep 17 00:00:00 2001 From: Neil Conway Date: Sat, 28 Apr 2007 23:54:59 +0000 Subject: Add support for IN as alternative to FROM in PL/PgSQL's FETCH statement, for consistency with the backend's FETCH command. Patch from Pavel Stehule, reviewed by Neil Conway. --- doc/src/sgml/plpgsql.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index abfc8b6ec64..97090b7316d 100644 --- a/doc/src/sgml/plpgsql.sgml +++ b/doc/src/sgml/plpgsql.sgml @@ -1,4 +1,4 @@ - + <application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language @@ -2523,7 +2523,7 @@ OPEN curs3(42); <literal>FETCH</> -FETCH direction FROM cursor INTO target; +FETCH direction { FROM | IN } cursor INTO target; -- cgit v1.2.3