kgyrtkirk commented on code in PR #17895:
URL: https://github.com/apache/druid/pull/17895#discussion_r2068476313
##########
processing/src/main/java/org/apache/druid/query/spec/QuerySegmentSpec.java:
##########
@@ -37,6 +38,8 @@
})
public interface QuerySegmentSpec
{
+ public static QuerySegmentSpec DEFAULT = new
MultipleIntervalSegmentSpec(Intervals.ONLY_ETERNITY);
Review Comment:
its not used in this PR; removed it.
but I will most likely add it back later - with `ETERNITY` ; it could be
used instead of the other forms:
```
new MultipleIntervalSegmentSpec(ImmutableList.of(Intervals.ETERNITY))
new
MultipleIntervalSegmentSpec(Collections.singletonList(Intervals.ETERNITY))
new MultipleIntervalSegmentSpec(ImmutableList.of(Filtration.eternity()))
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]