Set stopWords = fidx.getStopWords();
if ( stopWords != null && stopWords.contains(value) )
return null;
}
IndexQuery idxQry = new IndexQuery(pattern, node.operator, new Value(node.value));
IndexMatch[] matches = idx.queryMatches(tx, idxQry);
return QueryEngine.getUniqueKeys(matches);
}
else
throw new ProcessingException("No FullText Index to support pattern '"+node.name+"'");