Re: JSONB docs patch

2022-01-26 Thread Andrew Dunstan
On 1/25/22 18:08, David G. Johnston wrote: > On Tue, Jan 25, 2022 at 3:38 PM Mikhail Dobrinin > wrote: > > Hello, > > I have come across some missing documentation that I think could > benefit the community. > > Several functions like `jsonb_exists`, `jsonb_exists_any`, > `js

Re: JSONB docs patch

2022-01-25 Thread David G. Johnston
On Tue, Jan 25, 2022 at 3:38 PM Mikhail Dobrinin wrote: > Hello, > > I have come across some missing documentation that I think could benefit > the community. > > Several functions like `jsonb_exists`, `jsonb_exists_any`, > `jsonb_exists_all` have existed for many PG versions but were not > docum

JSONB docs patch

2022-01-25 Thread Mikhail Dobrinin
Hello, I have come across some missing documentation that I think could benefit the community. Several functions like `jsonb_exists`, `jsonb_exists_any`, `jsonb_exists_all` have existed for many PG versions but were not documented. They are equivalent to `?`, `?|`, and `?&` operators. But some JD