pgsql: Add more test coverage for jsonpath "$.*" with arrays

From: Michael Paquier <michael(at)paquier(dot)xyz>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add more test coverage for jsonpath "$.*" with arrays
Date: 2024-07-19 05:18:25
Message-ID: E1sUg0f-000E63-Al@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add more test coverage for jsonpath "$.*" with arrays

There was no coverage for the code path to unwrap an array before
applying ".*" to it, so add tests to provide more coverage for both
objects and arrays.

This shows, for example, that no results are returned for an array of
scalars, and what results are returned when the array contains an
object. A few more scenarios are covered with the strict/lax modes and
the operator "@?".

Author: David Wheeler
Reported-by: David G. Johnston, Stepan Neretin
Discussion: https://postgr.es/m/A95346F9-6147-46E0-809E-532A485D71D6@justatheory.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/3a137ab7e575b683c410c46312799a4d88e2b2f2

Modified Files
--------------
src/test/regress/expected/jsonb_jsonpath.out | 50 ++++++++++++++++++++++++++++
src/test/regress/sql/jsonb_jsonpath.sql | 11 ++++++
2 files changed, 61 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Heikki Linnakangas 2024-07-19 07:46:44 pgsql: Move resowner from common JitContext to LLVM specific
Previous Message Etsuro Fujita 2024-07-19 04:24:28 pgsql: postgres_fdw: Avoid "cursor can only scan forward" error.