]> granicus.if.org Git - postgresql/commit
Fix bogus optimization in JSONB containment tests.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 11 Oct 2014 18:13:54 +0000 (14:13 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 11 Oct 2014 18:13:54 +0000 (14:13 -0400)
commit86b889494a71bd6c9574de04d6612d367bc5a423
tree32772589e1ccdd9fd12b981a065577df633cf39d
parenta0c58b55220f190e8be9cfe0cadb4d478e13fac2
Fix bogus optimization in JSONB containment tests.

When determining whether one JSONB object contains another, it's okay to
make a quick exit if the first object has fewer pairs than the second:
because we de-duplicate keys within objects, it is impossible that the
first object has all the keys the second does.  However, the code was
applying this rule to JSONB arrays as well, where it does *not* hold
because arrays can contain duplicate entries.  The test was really in
the wrong place anyway; we should do it within JsonbDeepContains, where
it can be applied to nested objects not only top-level ones.

Report and test cases by Alexander Korotkov; fix by Peter Geoghegan and
Tom Lane.
src/backend/utils/adt/jsonb_op.c
src/backend/utils/adt/jsonb_util.c
src/test/regress/expected/jsonb.out
src/test/regress/expected/jsonb_1.out
src/test/regress/sql/jsonb.sql