doc: Fix mistake in PL/Python documentation

Small thinko introduced by 94aceed317

Reported-by: nassehk@gmail.com
This commit is contained in:
Peter Eisentraut 2022-02-02 09:14:26 +01:00
parent 4d7c3e3447
commit cb2bab14ff
1 changed files with 1 additions and 1 deletions

View File

@ -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>