pgsql: Make procedure OUT parameters work with JDBC - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: Make procedure OUT parameters work with JDBC
Date
Msg-id E1kXK5T-000803-LK@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Make procedure OUT parameters work with JDBC

The JDBC driver sends OUT parameters with type void.  This makes sense
when calling a function, so that the parameters are ignored in
ParseFuncOrColumn().  For a procedure call we want to treat them as
unknown.

Reviewed-by: Andrew Dunstan <andrew@dunslane.net>
Discussion: https://www.postgresql.org/message-id/flat/d7e49540-ea92-b4e2-5fff-42036102f968%402ndquadrant.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9213462c539e6412fe0498a7f8e20b662e15c4ec

Modified Files
--------------
src/backend/parser/parse_param.c | 9 +++++++++
1 file changed, 9 insertions(+)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: doc: Fix order of protocol messages in listing
Next
From: Peter Eisentraut
Date:
Subject: pgsql: Fix enum errdetail to mention bytes, not chars