Commit ee57467c authored by Peter Eisentraut's avatar Peter Eisentraut

doc: Fix mistake in PL/Python documentation

Small thinko introduced by 94aceed3

Reported-by: nassehk@gmail.com
parent 803f0b17
......@@ -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>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment