SEARCH-313: Handled unescaped plus sign in gap

This commit is contained in:
Joel Bernstein 2017-04-26 22:34:20 -04:00
parent 8a99937980
commit 55de74cc45
1 changed files with 3 additions and 0 deletions

View File

@ -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;