zachjsh commented on code in PR #15836: URL: https://github.com/apache/druid/pull/15836#discussion_r1483698135
########## sql/src/main/java/org/apache/druid/sql/calcite/parser/DruidSqlParserUtils.java: ########## @@ -77,6 +78,13 @@ public class DruidSqlParserUtils private static final Logger log = new Logger(DruidSqlParserUtils.class); public static final String ALL = "all"; + @VisibleForTesting + public static final String PARTITION_ERROR_MESSAGE = + "Invalid granularity[%s] specified after PARTITIONED BY clause. " + + "Expected " + + StringUtils.replace(StringUtils.replace(Arrays.toString(GranularityType.values()), "[", ""), "]", ",").trim() Review Comment: exuding week now -- 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]
