Description
With support for multiple Lucene indexes its not possible to allow a native query to pickup specific Lucene index
select [jcr:path] from [nt:base] where native('lucene', 'name:(Hello OR World)')
To support running this query against a specific Lucene property index 'foo' we can encode the index name in function name
select [jcr:path] from [nt:base] where native('foo', 'name:(Hello OR World)')