Re: Bug: Cannot pass null in Parameter in Query for ISNULL

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Bug: Cannot pass null in Parameter in Query for ISNULL
Дата
Msg-id 19011.1322785301@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Bug: Cannot pass null in Parameter in Query for ISNULL  (Maciek Sakrejda <msakrejda@truviso.com>)
Ответы Re: Bug: Cannot pass null in Parameter in Query for ISNULL  (Maciek Sakrejda <msakrejda@truviso.com>)
Список pgsql-jdbc
Maciek Sakrejda <msakrejda@truviso.com> writes:
> I guess one possible way to do this would be to only inline null
> values when binding parameters, although that seems on the dangerous
> side of clever (and you'd have a hell of a time getting it to work
> with named prepared statements).

That seems unlikely to help much.  Presumably, the OP isn't interested
in a constant-true result, so what he's really doing is hoping that
"$1 IS NULL" will report whether or not the passed parameter is null,
when sometimes it will be and sometimes it won't.

The difficulty from the server's point of view is really what data type
should be reported for the parameter symbol, if the client does a
Describe on the prepared statement.  There is no context that would let
us guess what the application is thinking will happen.  If we simply
removed the error checks about this, what would happen is that the
server would report "unknown" (yes, there is actually a type named
"unknown" in the Postgres system catalogs), and maybe the client-side
code would deal gracefully with that or maybe it wouldn't.  If we try to
resolve the unknown to any specific ordinary type, we're likely to break
things even worse, if the application is expecting something different.

A lesser problem is that if we let the type stand as "unknown", the
existing server I/O functions take that as equivalent to "text".
Which means that if you send some binary data (perhaps because the
application thinks the parameter is integer), the server will most
likely spit up, because the data isn't a well-formed string in the
proper encoding.  We could probably redefine things to avoid this
issue, but I'd be a bit worried about breakage.

In the end the nastiest issues are probably on the driver or interface
library.  If it doesn't know what data type the parameter is supposed to
be, how is it going to go about forwarding a value to the server?  Dumb
libraries like libpq may not have much of an issue here, but anything
with any intelligence is likely to be unhappy.

            regards, tom lane

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

Предыдущее
От: Maciek Sakrejda
Дата:
Сообщение: Re: Bug: Cannot pass null in Parameter in Query for ISNULL
Следующее
От: Merlin Moncure
Дата:
Сообщение: Re: [HACKERS] Java LISTEN/NOTIFY client library work-around