Re: BUG #15763: JSON nulls not handled properly

Поиск
Список
Период
Сортировка
От Jacob Crell
Тема Re: BUG #15763: JSON nulls not handled properly
Дата
Msg-id CADvKwnbAX2w1_HjvRALF34ydwpc5zXnzOrDHtVZ44cTSQEVykg@mail.gmail.com
обсуждение исходный текст
Ответ на Re: BUG #15763: JSON nulls not handled properly  ("David G. Johnston" <david.g.johnston@gmail.com>)
Ответы Re: BUG #15763: JSON nulls not handled properly  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
Thanks for the response. I may have been a bit off in my diagnosis of what was going wrong. My bug report stemmed from the fact that the below returns different results, the first throwing an error and the second returning no rows:

SELECT json_array_elements('{"key":null}'::json->'key')
SELECT json_array_elements(null::json)

This seems unintuitive. Is it potentially a bug?

On Tue, Apr 16, 2019 at 2:35 PM David G. Johnston <david.g.johnston@gmail.com> wrote:
On Tuesday, April 16, 2019, PG Bug reporting form <noreply@postgresql.org> wrote:
The following bug has been logged on the website:

Bug reference:      15763
Logged by:          Jacob Crell
Email address:      jacobcrell@gmail.com
PostgreSQL version: 9.6.8
Operating system:   AWS RDS
Description:       

SELECT '{"test":null}'::json->>'test' will return a null
SELECT '{"test":null}'::json->'test' will return a string 'null'
The 2nd option seems like it should also return a null.

This seems under documented but I can confidently say the behavior shown is intended and thus not a bug.  Nor should it be changed.  The second example returns a json typed value that when printed as text is the character sequence null.  It does not return a PostgreSQL string type.

Conversion of json null to PostgreSQL text results in a NULL of type text, which is indeed the first outcome.  This is, however, a lossy one-way conversion since NULL::json is NULL, not ‘null’.

David J.

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

Предыдущее
От: "David G. Johnston"
Дата:
Сообщение: Re: BUG #15763: JSON nulls not handled properly
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #15763: JSON nulls not handled properly