projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c3ab4ea
)
doc: Fix syntax in example
author
Peter Eisentraut
Mon, 22 Apr 2013 02:16:12 +0000
(22:16 -0400)
committer
Peter Eisentraut
Mon, 22 Apr 2013 02:22:10 +0000
(22:22 -0400)
LANGUAGE 'plpgsql' no longer works. The single quotes need to be
removed.
Erwin Brandstetter
doc/src/sgml/plpgsql.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/plpgsql.sgml
b/doc/src/sgml/plpgsql.sgml
index b20916353137d9ba577349b42e43170748f80648..75c8acdbd7980dee3566296512d74d8878b1d9a4 100644
(file)
--- a/
doc/src/sgml/plpgsql.sgml
+++ b/
doc/src/sgml/plpgsql.sgml
@@
-1708,7
+1708,7
@@
BEGIN
RETURN;
END
$BODY$
-LANGUAGE
'plpgsql'
;
+LANGUAGE
plpgsql
;
SELECT * FROM getallfoo();