mirror of https://github.com/apache/lucene.git
SOLR-9015: Adds SelectStream as a default function in the StreamHandler
This commit is contained in:
parent
e6e495c795
commit
99ba1a8f99
|
@ -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
|
||||||
|
|
|
@ -121,10 +121,11 @@ public class StreamHandler extends RequestHandlerBase implements SolrCoreAware,
|
||||||
.withFunctionName("outerHashJoin", OuterHashJoinStream.class)
|
.withFunctionName("outerHashJoin", OuterHashJoinStream.class)
|
||||||
.withFunctionName("intersect", IntersectStream.class)
|
.withFunctionName("intersect", IntersectStream.class)
|
||||||
.withFunctionName("complement", ComplementStream.class)
|
.withFunctionName("complement", ComplementStream.class)
|
||||||
.withFunctionName("sort", SortStream.class)
|
.withFunctionName("sort", SortStream.class)
|
||||||
.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)
|
||||||
|
|
Loading…
Reference in New Issue