kfaraz commented on code in PR #18950: URL: https://github.com/apache/druid/pull/18950#discussion_r2767282446
########## processing/src/main/java/org/apache/druid/java/util/common/granularity/Granularities.java: ########## @@ -57,6 +57,7 @@ public class Granularities public static final Granularity FIFTEEN_MINUTE = GranularityType.FIFTEEN_MINUTE.getDefaultGranularity(); public static final Granularity THIRTY_MINUTE = GranularityType.THIRTY_MINUTE.getDefaultGranularity(); public static final Granularity HOUR = GranularityType.HOUR.getDefaultGranularity(); + public static final Granularity THREE_HOUR = GranularityType.THREE_HOUR.getDefaultGranularity(); Review Comment: Let's use one of the existing standard granularities then, like SIX_HOUR or EIGHT_HOUR and update the tests accordingly. Would that work? -- 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]
