From: | Andrew Alsup <bluesbreaker(at)gmail(dot)com> |
---|---|
To: | Nikita Glukhov <n(dot)gluhov(at)postgrespro(dot)ru>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org> |
Cc: | Alvaro Herrera <alvherre(at)2ndquadrant(dot)com>, Thomas Munro <thomas(dot)munro(at)gmail(dot)com>, Andres Freund <andres(at)anarazel(dot)de>, Dmitry Dolgov <9erthalion6(at)gmail(dot)com>, Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>, Oleg Bartunov <obartunov(at)postgrespro(dot)ru>, Alexander Korotkov <a(dot)korotkov(at)postgrespro(dot)ru>, Michael Paquier <michael(at)paquier(dot)xyz>, Simon Riggs <simon(at)2ndquadrant(dot)com>, Andrew Dunstan <andrew(dot)dunstan(at)2ndquadrant(dot)com> |
Subject: | Re: Re: SQL/JSON: functions |
Date: | 2019-10-22 00:50:02 |
Message-ID: | d8f9305c-645a-e303-f7ee-02179d9cba6e@gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On 10/21/19 12:44 PM, Nikita Glukhov wrote:
>
> v39 patch is based on 5ee96b3e2221d154ffcb719bd2dee1179c53f821
>
> Use the following git command to apply patches:
>
> git am ~/Downloads/0001-Jsonpath-support-for-json-v39.patch
>
Thank you. The patch applied fine, with no errors.
Is this the type of testing that would be helpful? I plan to construct a
number of separate queries to test more nuanced edge cases. This test
simply compares the output of 4 separate sub-queries that should provide
the same results.
SELECT
CASE WHEN jop = jp_expr AND jop = jval AND jop = jval_path
THEN 'pass'
ELSE 'fail'
END
FROM
(
-- jsonb operator
SELECT count(*)
FROM testjsonb
WHERE j->>'abstract' LIKE 'A%'
) as jop,
(
-- jsonpath expression
SELECT count(*)
FROM testjsonb
WHERE j @? '$.abstract ? (@ starts with "A")'
) as jp_expr,
(
-- json_value()
SELECT count(*)
FROM testjsonb
WHERE JSON_VAlUE(j, 'lax $.abstract') LIKE 'A%'
) as jval,
(
-- json_value(jsonpath)
SELECT count(*)
FROM testjsonb
WHERE JSON_VALUE(j, 'lax $.abstract ? (@ starts with "A")') IS NOT NULL
) as jval_path;
If I'm completely off base for how testing is normally conducted, please
let me know.
Thanks,
Andrew Alsup
From | Date | Subject | |
---|---|---|---|
Next Message | Amit Kapila | 2019-10-22 03:09:40 | Re: dropdb --force |
Previous Message | Jeff Janes | 2019-10-22 00:20:21 | logical replication empty transactions |