[Fix](test) Fix an auto partition conflict and add many testcases (#27730)
Fix an auto partition conflict and add many testcases
This commit is contained in:
@ -206,8 +206,6 @@ public class PartitionExprUtil {
|
||||
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 == '*') {
|
||||
// Main user remove characters in time
|
||||
} else {
|
||||
int unicodeValue = value.codePointAt(i);
|
||||
String unicodeString = Integer.toHexString(unicodeValue);
|
||||
|
||||
Reference in New Issue
Block a user