SOLR-10356: Adds basic math streaming evaluators

This commit is contained in:
Dennis Gove 2017-03-23 20:08:11 -04:00 committed by Shalin Shekhar Mangar
parent 3af6f639b7
commit 8036300328
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ New Features
* SOLR-10393: Adds UUID Streaming Evaluator (Dennis Gove)
* SOLR-10339: New set-trigger and remove-trigger APIs for autoscaling. (shalin)
* SOLR-10356: Adds basic math Streaming Evaluators (Dennis Gove)
Bug Fixes
----------------------

View File

@ -279,7 +279,7 @@ public class StreamHandler extends RequestHandlerBase implements SolrCoreAware,
.withFunctionName("cbrt", CubedRootEvaluator.class)
.withFunctionName("coalesce", CoalesceEvaluator.class)
.withFunctionName("uuid", UuidEvaluator.class)
// Conditional Stream Evaluators
.withFunctionName("if", IfThenElseEvaluator.class)
.withFunctionName("analyze", AnalyzeEvaluator.class)