SOLR-9015: Adds SelectStream as a default function in the StreamHandler

This commit is contained in:
Dennis Gove 2016-04-19 20:43:45 -04:00
parent e6e495c795
commit 99ba1a8f99
2 changed files with 7 additions and 4 deletions

View File

@ -188,6 +188,8 @@ Other Changes
* SOLR-8985: Added back support for 'includeDynamic' flag to /schema/fields endpoint (noble) * SOLR-8985: Added back support for 'includeDynamic' flag to /schema/fields endpoint (noble)
* SOLR-9015: Adds SelectStream as a default function in the StreamHandler (Dennis Gove)
================== 6.0.0 ================== ================== 6.0.0 ==================
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release

View File

@ -125,6 +125,7 @@ public class StreamHandler extends RequestHandlerBase implements SolrCoreAware,
.withFunctionName("daemon", DaemonStream.class) .withFunctionName("daemon", DaemonStream.class)
.withFunctionName("shortestPath", ShortestPathStream.class) .withFunctionName("shortestPath", ShortestPathStream.class)
.withFunctionName("gatherNodes", GatherNodesStream.class) .withFunctionName("gatherNodes", GatherNodesStream.class)
.withFunctionName("select", SelectStream.class)
// metrics // metrics
.withFunctionName("min", MinMetric.class) .withFunctionName("min", MinMetric.class)