@@ -10333,32 +10333,36 @@ table2-mapping
1033310333 <row>
1033410334 <entry><literal>@></literal></entry>
1033510335 <entry><type>jsonb</type></entry>
10336- <entry>Does the left JSON value contain within it the right value?</entry>
10336+ <entry>Does the left JSON value contain the right JSON
10337+ path/value entries at the top level?</entry>
1033710338 <entry><literal>'{"a":1, "b":2}'::jsonb @> '{"b":2}'::jsonb</literal></entry>
1033810339 </row>
1033910340 <row>
1034010341 <entry><literal><@</literal></entry>
1034110342 <entry><type>jsonb</type></entry>
10342- <entry>Is the left JSON value contained within the right value?</entry>
10343+ <entry>Are the left JSON path/value entries contained at the top level within
10344+ the right JSON value?</entry>
1034310345 <entry><literal>'{"b":2}'::jsonb <@ '{"a":1, "b":2}'::jsonb</literal></entry>
1034410346 </row>
1034510347 <row>
1034610348 <entry><literal>?</literal></entry>
1034710349 <entry><type>text</type></entry>
10348- <entry>Does the key/element <emphasis>string</emphasis> exist within
10349- the JSON value?</entry>
10350+ <entry>Does the <emphasis>string</emphasis> exist as a top-level
10351+ key within the JSON value?</entry>
1035010352 <entry><literal>'{"a":1, "b":2}'::jsonb ? 'b'</literal></entry>
1035110353 </row>
1035210354 <row>
1035310355 <entry><literal>?|</literal></entry>
1035410356 <entry><type>text[]</type></entry>
10355- <entry>Do any of these key/element <emphasis>strings</emphasis> exist?</entry>
10357+ <entry>Do any of these array <emphasis>strings</emphasis>
10358+ exist as top-level keys?</entry>
1035610359 <entry><literal>'{"a":1, "b":2, "c":3}'::jsonb ?| array['b', 'c']</literal></entry>
1035710360 </row>
1035810361 <row>
1035910362 <entry><literal>?&</literal></entry>
1036010363 <entry><type>text[]</type></entry>
10361- <entry>Do all of these key/element <emphasis>strings</emphasis> exist?</entry>
10364+ <entry>Do all of these array <emphasis>strings</emphasis> exist
10365+ as top-level keys?</entry>
1036210366 <entry><literal>'["a", "b"]'::jsonb ?& array['a', 'b']</literal></entry>
1036310367 </row>
1036410368 <row>
0 commit comments