Description
An index such as:
+ /oak:index/ntbaseIdx - evaluatePathRestrictions = true + indexRules/nt:base/properties + prop - propertyIndex = true
attempts to answer a query such as:
/jcr:root/path/element(*, some:Type)[par/@prop='bar']
but current this query is planned by this index as
prop:bar :depth:[2 TO 2] :ancestors:/path
which won't get this result. This is because the depth constraint should've been modified to :depth:[3 TO 3]
Do note that even :ancestors constraint is wrong (too lenient).
So, the correct plan should've looked like:
prop:bar :depth:[3 TO 3] :ancestors:/path
Similar issue exist for exact and parent path restrictions (these don't need evaluatePathRestriction as well)