mirror of https://github.com/apache/druid.git
fix cursor overshooting granularity boundaries in IncrementalIndexStorageAdapter as well
This commit is contained in:
parent
c0397aa67c
commit
16e4cd4291
|
@ -164,7 +164,7 @@ public class IncrementalIndexStorageAdapter implements StorageAdapter
|
|||
timeStart, new String[][]{}
|
||||
),
|
||||
new IncrementalIndex.TimeAndDims(
|
||||
Math.min(actualInterval.getEndMillis(), gran.next(timeStart)), new String[][]{}
|
||||
Math.min(actualInterval.getEndMillis(), gran.next(input)), new String[][]{}
|
||||
)
|
||||
);
|
||||
time = gran.toDateTime(input);
|
||||
|
|
Loading…
Reference in New Issue