projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a72c430
)
doc: Fix mistake in PL/Python documentation
author
Peter Eisentraut
<
[email protected]
>
Wed, 2 Feb 2022 08:14:26 +0000
(09:14 +0100)
committer
Peter Eisentraut
<
[email protected]
>
Wed, 2 Feb 2022 08:16:36 +0000
(09:16 +0100)
Small thinko introduced by
94aceed317730953476bec490ce0148b2af3c383
Reported-by:
[email protected]
doc/src/sgml/plpython.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/plpython.sgml
b/doc/src/sgml/plpython.sgml
index c84e93a8f89fd3b2b31601c28ba244fc3ef384e3..82ff387ef4f39acab56699aa1408da39cc13cdc1 100644
(file)
--- a/
doc/src/sgml/plpython.sgml
+++ b/
doc/src/sgml/plpython.sgml
@@
-569,7
+569,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>