Re: Doc Rework: Section 9.16.13 SQL/JSON Query Functions

From: jian he <jian(dot)universality(at)gmail(dot)com>
To: Amit Langote <amitlangote09(at)gmail(dot)com>
Cc: "David G(dot) Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)lists(dot)postgresql(dot)org>
Subject: Re: Doc Rework: Section 9.16.13 SQL/JSON Query Functions
Date: 2024-07-08 07:41:03
Message-ID: CACJufxFGXnx6At9=8gcxXuFSnDizEojpXSP76JAukGcujtEzeA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

another tiny issue.

- <literal>select json_query(jsonb '{"a": "[1, 2]"}', 'lax $.a'
OMIT QUOTES);</literal>
+ <literal>JSON_QUERY(jsonb '{"a": "[1, 2]"}', 'lax $.a' OMIT
QUOTES);</literal>
<returnvalue>[1, 2]</returnvalue>
</para>
<para>
- <literal>select json_query(jsonb '{"a": "[1, 2]"}', 'lax $.a'
RETURNING int[] OMIT QUOTES ERROR ON ERROR);</literal>
+ <literal>JSON_QUERY(jsonb '{"a": "[1, 2]"}', 'lax $.a'
RETURNING int[] OMIT QUOTES ERROR ON ERROR);</literal>

These two example queries don't need semicolons at the end?

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Peter Smith 2024-07-08 07:50:26 Re: Pgoutput not capturing the generated columns
Previous Message 杨伯宇 (长堂) 2024-07-08 07:22:36 回复:Re: 回复:Re: speed up pg_upgrade with large number of tables