projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b8174bc
)
Fix typo in PL/pgsql code example.
author
Robert Haas
Tue, 27 Jul 2010 20:02:17 +0000
(20:02 +0000)
committer
Robert Haas
Tue, 27 Jul 2010 20:02:17 +0000
(20:02 +0000)
Backpatch to 8.4.
Marc Cousin. Review by Kevin Grittner.
doc/src/sgml/plpgsql.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/plpgsql.sgml
b/doc/src/sgml/plpgsql.sgml
index 1ed946d10ef158b85f40ee3d75cfc11317074344..9d18b1594a808e146d071922717403c9d298cba4 100644
(file)
--- a/
doc/src/sgml/plpgsql.sgml
+++ b/
doc/src/sgml/plpgsql.sgml
@@
-1,4
+1,4
@@
-
+
PL/pgSQL
-
SQL
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;