JingsongLi commented on code in PR #6300:
URL: https://github.com/apache/paimon/pull/6300#discussion_r2377916347
##########
paimon-core/src/main/java/org/apache/paimon/utils/PartitionPathUtils.java:
##########
@@ -75,6 +77,16 @@ private static boolean needsEscaping(char c) {
* @return An escaped, valid partition name.
*/
public static String generatePartitionPath(LinkedHashMap<String, String>
partitionSpec) {
+ return generatePartitionPathUtil(partitionSpec, false);
+ }
+
+ public static String generatePartitionPathOnlyValue(
Review Comment:
Remove this method, just invoke `generatePartitionPathUtil(partitionSpec,
true)`.
--
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]