mirror of https://github.com/apache/lucene.git
SEARCH-313: Handled unescaped plus sign in gap
This commit is contained in:
parent
8a99937980
commit
55de74cc45
|
@ -168,6 +168,9 @@ public class TimeSeriesStream extends TupleStream implements Expressible {
|
|||
this.collection = collection;
|
||||
this.start = start;
|
||||
this.gap = gap;
|
||||
if(!gap.startsWith("+")) {
|
||||
this.gap = "+"+gap;
|
||||
}
|
||||
this.metrics = metrics;
|
||||
this.field = field;
|
||||
this.params = params;
|
||||
|
|
Loading…
Reference in New Issue