Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d7d196
)
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:19 +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 c1651000a3d8b926d4e763ba5ab124117255fe78..b92c8662bf27e034f108af13fda0b784d3e18c6e 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>