docs: add JSONB containment example of a key and empty object

Backpatch through 9.5
This commit is contained in:
Bruce Momjian 2015-10-07 10:30:54 -04:00
parent 23d29cef93
commit b292ee79a6
1 changed files with 4 additions and 1 deletions

View File

@ -291,6 +291,9 @@ SELECT '[1, 2, [1, 3]]'::jsonb @> '[[1, 3]]'::jsonb;
-- Similarly, containment is not reported here:
SELECT '{"foo": {"bar": "baz"}}'::jsonb @> '{"bar": "baz"}'::jsonb; -- yields false
-- A top-level key and an empty object is contained:
SELECT '{"foo": {"bar": "baz"}}'::jsonb @> '{"foo": {}}'::jsonb;
</programlisting>
<para>