Re: remaining sql/json patches

From: Amit Langote <amitlangote09(at)gmail(dot)com>
To: Alexander Lakhin <exclusion(at)gmail(dot)com>
Cc: jian he <jian(dot)universality(at)gmail(dot)com>, Thom Brown <thom(at)linux(dot)com>, Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, Tomas Vondra <tomas(dot)vondra(at)enterprisedb(dot)com>, Himanshu Upadhyaya <upadhyaya(dot)himanshu(at)gmail(dot)com>, Erik Rijkers <er(at)xs4all(dot)nl>, Andres Freund <andres(at)anarazel(dot)de>, Andrew Dunstan <andrew(at)dunslane(dot)net>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: remaining sql/json patches
Date: 2024-06-28 06:15:16
Message-ID: CA+HiwqGWnHixj9NvZfOOd57tAwoC7ccMH78XuKxO5yLKFBvoDw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi Alexander,

On Wed, Jun 26, 2024 at 8:00 PM Alexander Lakhin <exclusion(at)gmail(dot)com> wrote:
>
> Hello,
>
> I'm not sure I've chosen the most appropriate thread for reporting the
> issue, but maybe you would like to look at code comments related to
> SQL/JSON constructors:
>
> * Transform JSON_ARRAY() constructor.
> *
> * JSON_ARRAY() is transformed into json[b]_build_array[_ext]() call
> * depending on the output JSON format. The first argument of
> * json[b]_build_array_ext() is absent_on_null.
>
>
> * Transform JSON_OBJECT() constructor.
> *
> * JSON_OBJECT() is transformed into json[b]_build_object[_ext]() call
> * depending on the output JSON format. The first two arguments of
> * json[b]_build_object_ext() are absent_on_null and check_unique.
>
> But the referenced functions were removed at [1]; Nikita Glukhov wrote:
> > I have removed json[b]_build_object_ext() and json[b]_build_array_ext().
>
> (That thread seems too old for the current discussion.)
>
> Also, a comment above transformJsonObjectAgg() references
> json[b]_objectagg[_unique][_strict](key, value), but I could find
> json_objectagg() only.
>
> [1] https://www.postgresql.org/message-id/be40362b-7821-7422-d33f-fbf1c61bb3e3%40postgrespro.ru

Thanks for the report. Yeah, those comments that got added in
7081ac46ace are obsolete.

Attached is a patch to fix that. Should be back-patched to v16.

--
Thanks, Amit Langote

Attachment Content-Type Size
v1-0001-SQL-JSON-Fix-some-obsolete-comments.patch application/octet-stream 2.2 KB

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Amit Kapila 2024-06-28 06:18:26 Re: walsender.c comment with no context is hard to understand
Previous Message jian he 2024-06-28 06:13:53 Re: pgsql: Add more SQL/JSON constructor functions