HappenLee commented on code in PR #27730:
URL: https://github.com/apache/doris/pull/27730#discussion_r1410081749
##########
fe/fe-core/src/main/java/org/apache/doris/analysis/PartitionExprUtil.java:
##########
@@ -206,8 +206,6 @@ public static String getFormatPartitionValue(String value) {
char ch = value.charAt(i);
if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >=
'0' && ch <= '9')) {
sb.append(ch);
- } else if (ch == '-' || ch == ':' || ch == ' ' || ch == '*') {
Review Comment:
what problem change the case?
##########
fe/fe-core/src/main/java/org/apache/doris/analysis/PartitionExprUtil.java:
##########
@@ -206,8 +206,6 @@ public static String getFormatPartitionValue(String value) {
char ch = value.charAt(i);
if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >=
'0' && ch <= '9')) {
sb.append(ch);
- } else if (ch == '-' || ch == ':' || ch == ' ' || ch == '*') {
Review Comment:
what problem change the case?
--
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]