projects
/
users
/
gsingh
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d7c3e3
)
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:14:26 +0000
(09:14 +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 c2540b8ec9d383037b1f6f20826e40f15a4ad680..b67f8f4aaedf51eba1cb47478f5b777a72a8ac4f 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>