diff options
author | Neil Conway <neilc@samurai.com> | 2007-04-28 23:54:59 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2007-04-28 23:54:59 +0000 |
commit | f2321a3f37b74b42d20ec787afb7ee4a29655a3e (patch) | |
tree | 7bd72dce472a841133f9082104c5b0f26860c492 /doc/src | |
parent | bbbe825f5f46d7ead60502f43d3b414719a41aa5 (diff) |
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.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/plpgsql.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.107 2007/04/16 17:21:22 tgl Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.108 2007/04/28 23:54:58 neilc Exp $ --> <chapter id="plpgsql"> <title><application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language</title> @@ -2523,7 +2523,7 @@ OPEN curs3(42); <title><literal>FETCH</></title> <synopsis> -FETCH <optional> <replaceable>direction</replaceable> FROM </optional> <replaceable>cursor</replaceable> INTO <replaceable>target</replaceable>; +FETCH <optional> <replaceable>direction</replaceable> { FROM | IN } </optional> <replaceable>cursor</replaceable> INTO <replaceable>target</replaceable>; </synopsis> <para> |