Description
Problems seems to be due to the fix for https://issues.apache.org/jira/browse/OAK-9481
Consider an index definition
testIndex {
.
.
.
"properties": {
"jcr:primaryType": "nt:unstructured",
"foo":
,
"bar":
}
}
}
A query like
select * from [nt:base] AS [a] where [a].[foo] like 'xyz%')
picks up testIndex
but
select * from [nt:base] AS [a] where [a].[bar] like 'xyz%')
doesn't.