From: Robert Haas Date: Tue, 27 Jul 2010 20:02:27 +0000 (+0000) Subject: Fix typo in PL/pgsql code example. X-Git-Tag: REL8_4_5~59 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29789a8b7a43e3ab525e9dff1b2d800f22c51c4e;p=postgresql Fix typo in PL/pgsql code example. Backpatch to 8.4. Marc Cousin. Review by Kevin Grittner. --- diff --git a/doc/src/sgml/plpgsql.sgml b/doc/src/sgml/plpgsql.sgml index 79e3c86083..c13f3f6714 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 @@ -4243,7 +4243,7 @@ show errors; CREATE OR REPLACE FUNCTION cs_update_referrer_type_proc() RETURNS void AS $func$ DECLARE - CURSOR referrer_keys IS + referrer_keys CURSOR IS SELECT * FROM cs_referrer_keys ORDER BY try_order; func_body text;