Re: JSON path - Mailing list pgsql-performance

From Jesper Pedersen
Subject Re: JSON path
Date
Msg-id 17beac8b-e4e5-d37d-3412-3cbb2052090d@redhat.com
Whole thread Raw
In response to Re: JSON path  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-performance
Hi,

On 11/14/19 1:04 PM, Tom Lane wrote:
> As of v12, that WITH will get flattened, so that you still end up
> with three invocations of jsonb_path_query_first, as EXPLAIN VERBOSE
> will show you.  You could write "WITH foo AS MATERIALIZED ..." to
> prevent that, but then you'll need to stick the WHERE clause inside
> the WITH or you'll end up running jsonb_path_query_first for every
> row of tbl.
>
> With
>
> explain verbose WITH foo AS materialized (select
>     id,
>     col1,
>     col2,
> jsonb_path_query_first(data,'$.lvl1.lvl2.lvl3.lvl4.lvl5') as jsondata
>     from tbl where id = 1 )
> select
>     col1,
>     col2,
>     jsondata->'val1'->'text()' as val1,
>     jsondata->'val2'->'text()' as val2,
>     jsondata->'val3'->'text()' as val3
> from foo;
>

Thanks Tom ! This works :)

I owe you one.

Best regards,
  Jesper




pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: JSON path
Next
From: Craig James
Date:
Subject: Simple DELETE on modest-size table runs 100% CPU forever