diff --git a/search-services/alfresco-search/src/main/java/org/alfresco/solr/SolrInformationServer.java b/search-services/alfresco-search/src/main/java/org/alfresco/solr/SolrInformationServer.java index 47108aa8d..123e20ed0 100644 --- a/search-services/alfresco-search/src/main/java/org/alfresco/solr/SolrInformationServer.java +++ b/search-services/alfresco-search/src/main/java/org/alfresco/solr/SolrInformationServer.java @@ -4185,10 +4185,13 @@ public class SolrInformationServer implements InformationServer public void doSetNextReader(LeafReaderContext context) throws IOException { - super.doSetNextReader(context); currentLongs = context.reader().getNumericDocValues(FIELD_INTXID); } + public boolean needsScores() { + return false; + } + public void collect(int doc) throws IOException { long txnId = currentLongs.get(doc);