deniskuzZ commented on code in PR #5943: URL: https://github.com/apache/hive/pull/5943#discussion_r2228628136
########## standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/utils/MetaStoreServerUtils.java: ########## @@ -255,31 +253,44 @@ public static double decimalToDouble(Decimal decimal) { return new BigDecimal(new BigInteger(decimal.getUnscaled()), decimal.getScale()).doubleValue(); } - public static void validatePartitionNameCharacters(List<String> partVals, - Pattern partitionValidationPattern) throws MetaException { - - String invalidPartitionVal = getPartitionValWithInvalidCharacter(partVals, partitionValidationPattern); - if (invalidPartitionVal != null) { - throw new MetaException("Partition value '" + invalidPartitionVal + - "' contains a character " + "not matched by whitelist pattern '" + - partitionValidationPattern.toString() + "'. " + "(configure with " + - MetastoreConf.ConfVars.PARTITION_NAME_WHITELIST_PATTERN.getVarname() + ")"); + public static Pattern getPartitionValidationRegex(Configuration conf) { Review Comment: can it be private? -- 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: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org