| From: | Andrey Rachitskiy <pl0h0yp1(at)gmail(dot)com> |
|---|---|
| To: | 1482694023(at)qq(dot)com, pgsql-bugs(at)lists(dot)postgresql(dot)org |
| Subject: | Re: BUG #19721: json_value with DEFAULT ON ERROR returns inconsistent results for NULL input in materialized CTE |
| Date: | 2026-09-26 08:55:02 |
| Message-ID: | CAB8bMisW6m=UVJVkQVtm6AzF8uHaUWhHWuwz2UpXEhZPjVktVQ@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-bugs |
сб, 26 сент. 2026 г. в 12:15, PG Bug reporting form <noreply(at)postgresql(dot)org
>:
> The following bug has been logged on the website:
>
> Bug reference: 19721
> Logged by: N J
> Email address: 1482694023(at)qq(dot)com
> PostgreSQL version: 18.6
> Operating system: windows 11
> Description:
>
> Environment:
> PostgreSQL: 18.6
> OS: Windows 11 64-bit
>
> Reproduction SQL:
> CREATE TEMP TABLE json_requests (
> request_id integer PRIMARY KEY,
> expected integer
> );
> CREATE TEMP TABLE json_payloads (
> request_id integer PRIMARY KEY REFERENCES json_requests(request_id),
> document jsonb NOT NULL
> );
> INSERT INTO json_requests VALUES
> (1, 0), (2, NULL), (3, 7), (4, NULL);
> INSERT INTO json_payloads VALUES
> (1, '{}'::jsonb),
> (3, '{"a":7}'::jsonb);
>
> WITH ordered_inputs AS MATERIALIZED (
> SELECT r.request_id, r.expected, p.document
> FROM json_requests AS r
> LEFT JOIN json_payloads AS p USING (request_id)
> ORDER BY r.request_id
> ),
> evaluated AS MATERIALIZED (
> SELECT request_id, expected,
> json_value(
> document,
> 'strict $.a'
> RETURNING integer
> DEFAULT 0 ON ERROR
> ) AS actual
> FROM ordered_inputs
> )
> SELECT request_id, expected, actual,
> actual IS DISTINCT FROM expected AS differs
> FROM evaluated
> ORDER BY request_id;
>
> Observed result:
> request_id | expected | actual | differs
> ------------+----------+--------+---------
> 1 | 0 | 0 | f
> 2 | null | 0 | t
> 3 | 7 | 7 | f
> 4 | null | null| f
>
> Expected result:
> Rows 2 and 4 both have NULL document from the LEFT JOIN.
> The identical json_value expression should return the same result for both
> NULL inputs.
> Either both should return 0 (DEFAULT value) or both should return NULL.
> The current behavior is inconsistent.
>
> Explanation:
> The inconsistency occurs when using MATERIALIZED CTEs with json_value and
> DEFAULT ON ERROR clause.
> Same NULL input produces different output values in different rows, which
> is
> an execution consistency bug.
>
>
>
>
>
Hi,
Thanks for the report.
This is the same leftover as BUG #19621 [0].
Row 1 hits ON ERROR and leaves the error flag set. Row 2 is a SQL NULL from
the LEFT JOIN, so path evaluation is skipped and the leftover flag still
applies DEFAULT 0. Row 3 clears the flags. Row 4 is NULL again and
correctly returns NULL.
MATERIALIZED only fixes the row order. Both NULL documents should return
NULL.
v2 from the #19621 thread fixes this. No separate patch is needed.
[0] -
https://www.postgresql.org/message-id/CAB8bMitawD%3DERVLwYuDXvMT_OJqf%2BqAKx%3D3GEH6V_WHT7jnq7A%40mail.gmail.com
--
Regards,
Rachitskiy Andrey
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Kirill Reshke | 2026-09-26 09:02:48 | Re: BUG #19720: pg_trgm GiST index corruption from gtrgm_union() dropping SIGNKEY |
| Previous Message | PG Bug reporting form | 2026-09-26 06:26:06 | BUG #19721: json_value with DEFAULT ON ERROR returns inconsistent results for NULL input in materialized CTE |