projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e41176b
)
doc: Fix mistake in PL/Python documentation
author
Peter Eisentraut
<peter@eisentraut.org>
Wed, 2 Feb 2022 08:14:26 +0000
(09:14 +0100)
committer
Peter Eisentraut
<peter@eisentraut.org>
Wed, 2 Feb 2022 08:16:31 +0000
(09:16 +0100)
Small thinko introduced by
94aceed317730953476bec490ce0148b2af3c383
Reported-by: nassehk@gmail.com
doc/src/sgml/plpython.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/plpython.sgml
b/doc/src/sgml/plpython.sgml
index 111ef27de4c93abb9f30b2748b8ad763f23d5e05..ae9f059ba1319935e15fedb5d2cc3e850614ee8e 100644
(file)
--- a/
doc/src/sgml/plpython.sgml
+++ b/
doc/src/sgml/plpython.sgml
@@
-573,7
+573,7
@@
CREATE FUNCTION make_pair (name text, value integer)
RETURNS named_value
AS $$
return ( name, value )
- # or alternatively, as
tuple
: return [ name, value ]
+ # or alternatively, as
list
: return [ name, value ]
$$ LANGUAGE plpythonu;
</programlisting>