From: Robert Haas Date: Tue, 27 Jul 2010 20:02:17 +0000 (+0000) Subject: Fix typo in PL/pgsql code example. X-Git-Tag: REL9_0_BETA4~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43d3d2a5fdc55b1e066aff71c7f26ce07a5bc970;p=thirdparty%2Fpostgresql.git 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 1ed946d10ef..9d18b1594a8 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 @@ -4279,7 +4279,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;