pgsql: Add a hack requested by the JDBC driver writers: when a

Поиск
Список
Период
Сортировка
От tgl@svr1.postgresql.org (Tom Lane)
Тема pgsql: Add a hack requested by the JDBC driver writers: when a
Дата
Msg-id 20050622151944.7F9F352862@svr1.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Log Message:
-----------
Add a hack requested by the JDBC driver writers: when a function's
argument list contains parameter symbols ($n) declared as type VOID,
discard these arguments.  This allows the driver to avoid renumbering
mixed IN and OUT argument placeholders (the JDBC syntax involves writing
? for both IN and OUT parameters, but on the server side we don't think
that OUT parameters are arguments).  This doesn't break any currently-
useful cases since VOID is not used as an input argument type.

Modified Files:
--------------
    pgsql/doc/src/sgml:
        protocol.sgml (r1.58 -> r1.59)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/protocol.sgml.diff?r1=1.58&r2=1.59)
    pgsql/src/backend/parser:
        parse_func.c (r1.180 -> r1.181)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_func.c.diff?r1=1.180&r2=1.181)

В списке pgsql-committers по дате отправления:

Предыдущее
От: applejack@pgfoundry.org (User Applejack)
Дата:
Сообщение: uri - uri: fixed cast to uri_table to include defaults for scheme
Следующее
От: tgl@svr1.postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql: Add a validator function for plperl.