mirror of https://github.com/apache/lucene.git
SOLR-10566: Fix error handling
This commit is contained in:
parent
8c11f81a95
commit
0a2286c5f2
|
@ -91,17 +91,17 @@ public class TimeSeriesStream extends TupleStream implements Expressible {
|
|||
}
|
||||
|
||||
String end = null;
|
||||
if(startExpression != null) {
|
||||
if(endExpression != null) {
|
||||
end = ((StreamExpressionValue)endExpression.getParameter()).getValue();
|
||||
}
|
||||
|
||||
String gap = null;
|
||||
if(startExpression != null) {
|
||||
if(gapExpression != null) {
|
||||
gap = ((StreamExpressionValue)gapExpression.getParameter()).getValue();
|
||||
}
|
||||
|
||||
String field = null;
|
||||
if(startExpression != null) {
|
||||
if(fieldExpression != null) {
|
||||
field = ((StreamExpressionValue)fieldExpression.getParameter()).getValue();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue