You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a query contains a filter with a QTL extractionFn, and its intervals contain both times for which there is data and times for which there is no data, Druid returns a null exception.
For example, it's currently about 2015-09-09 00:15 UTC, and it looks like Druid contains data through about 2015-09-08 23:30. A query like:
But the same query over a period with "intervals":["2015-09-02/2015-09-08T23:00:00"]
succeeds.
Similarly, if the time range is changed to one for which the whole interval contains no data, e.g. one entirely in the future or entirely in the past before the first datum in Druid: "intervals":["2010-09-02/2010-09-09"]
then Druid successfully returns [].
It's apparently only when the intervals contain overlaps both periods for which there is data and periods for which there is no data that there's a problem.
The text was updated successfully, but these errors were encountered:
Jonathan! Long time no see! I remember when this was filed... good times. @fjy I believe this was resolved (as noted above) by #1578 and #1731 and can be closed.
If a query contains a filter with a QTL extractionFn, and its intervals contain both times for which there is data and times for which there is no data, Druid returns a null exception.
For example, it's currently about 2015-09-09 00:15 UTC, and it looks like Druid contains data through about 2015-09-08 23:30. A query like:
returns
{"error":"null exception"}
But the same query over a period with
"intervals":["2015-09-02/2015-09-08T23:00:00"]
succeeds.
Similarly, if the time range is changed to one for which the whole interval contains no data, e.g. one entirely in the future or entirely in the past before the first datum in Druid:
"intervals":["2010-09-02/2010-09-09"]
then Druid successfully returns
[]
.It's apparently only when the intervals contain overlaps both periods for which there is data and periods for which there is no data that there's a problem.
The text was updated successfully, but these errors were encountered: