BUG #16828: duplicate results when using ** recursive expression in JSON path - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #16828: duplicate results when using ** recursive expression in JSON path
Date
Msg-id 16828-2b0229babfad2d8c@postgresql.org
Whole thread Raw
Responses Re: BUG #16828: duplicate results when using ** recursive expression in JSON path
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      16828
Logged by:          Thomas Kellerer
Email address:      shammat@gmx.net
PostgreSQL version: 13.1
Operating system:   Windows 10, CentOS 8
Description:

The following query 

  select jsonb_path_query_array(col, '$.**.itemName')
  from (
    values ('{"items": [{"itemName": "a", "items": [{"itemName":
"b"}]}]}'::jsonb)
  ) as t(col) 

returns ["a", "a", "b", "b"] but should return only ["a", "b"] as each value
only appears once in the JSON value. 

This also happens on Postgres 12.x


pgsql-bugs by date:

Previous
From:
Date:
Subject: RE: BUG #16825: When building on Windows, cl /? retrun 'x64' not AMD64 and the build does not create x64 environment
Next
From:
Date:
Subject: RE: BUG #16825: When building on Windows, cl /? retrun 'x64' not AMD64 and the build does not create x64 environment