-
Type: Improvement
-
Status: Resolved
-
Priority: Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 5.6.0-HF04, 5.7.1
-
Component/s: Query & PageProvider
Searches on the IN operator are split as JackRabbit did not support that kind of query.
WHERE dc:contributors IN ('bob', 'john')
is then rewritten:
WHERE (dc:contributors = 'bob' OR dc:contributors = 'john')
which is useless.