mirror of
https://github.com/apache/druid.git
synced 2025-02-17 07:25:02 +00:00
reduce boundaries for time boundary a bit; prevent bound errors
This commit is contained in:
parent
6729f166d9
commit
6828ad10d4
@ -43,8 +43,8 @@ import java.util.Map;
|
||||
public class TimeBoundaryQuery extends BaseQuery<Result<TimeBoundaryResultValue>>
|
||||
{
|
||||
public static final Interval MY_Y2K_INTERVAL = new Interval(
|
||||
new DateTime(Long.MIN_VALUE),
|
||||
new DateTime(Long.MAX_VALUE)
|
||||
new DateTime(Integer.MIN_VALUE),
|
||||
new DateTime(Integer.MAX_VALUE)
|
||||
);
|
||||
public static final String MAX_TIME = "maxTime";
|
||||
public static final String MIN_TIME = "minTime";
|
||||
|
Loading…
x
Reference in New Issue
Block a user