diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-07-27 20:02:27 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-07-27 20:02:27 +0000 |
commit | 29789a8b7a43e3ab525e9dff1b2d800f22c51c4e (patch) | |
tree | 96c79001200f420476c68bb0844db9a6e25b02d9 /doc/src | |
parent | 966ab3f7301ec6b1457482a171f003f32d58d4bf (diff) |
Fix typo in PL/pgsql code example.
Backpatch to 8.4.
Marc Cousin. Review by Kevin Grittner.
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 79e3c860838..c13f3f67148 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.142.2.1 2010/02/19 23:55:52 rhaas Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/plpgsql.sgml,v 1.142.2.2 2010/07/27 20:02:27 rhaas Exp $ --> <chapter id="plpgsql"> <title><application>PL/pgSQL</application> - <acronym>SQL</acronym> Procedural Language</title> @@ -4243,7 +4243,7 @@ show errors; <programlisting> 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; |