Skip to content

Commit 3ebc6d2

Browse files
committed
Doc: fix missing mention of procedure OUT parameters.
Small oversight in commit 2453ea1.
1 parent bbaf315 commit 3ebc6d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

doc/src/sgml/plpgsql.sgml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1959,7 +1959,8 @@ SELECT * FROM get_available_flightid(CURRENT_DATE);
19591959
or <command>DO</command> block can call a procedure
19601960
using <command>CALL</command>. Output parameters are handled
19611961
differently from the way that <command>CALL</command> works in plain
1962-
SQL. Each <literal>INOUT</literal> parameter of the procedure must
1962+
SQL. Each <literal>OUT</literal> or <literal>INOUT</literal>
1963+
parameter of the procedure must
19631964
correspond to a variable in the <command>CALL</command> statement, and
19641965
whatever the procedure returns is assigned back to that variable after
19651966
it returns. For example:

0 commit comments

Comments
 (0)