-
Enhancement
-
Resolution: Done
-
Major
-
0.8.0.Final
-
None
MySql table name with spaces or dot(.) , like "DP_TEST.ABC TEST" or "DP_TEST.A.B.C.D",
String table1 = "DP_TEST.ABC TEST";
String table2 = "DP_TEST.A.B.C.D";
List<String> parts1 = TableIdParser.parse(table1);
expected result:
parts1.size() = 2
parts1.get(0) = DP_TEST
parts1.get(1) = ABC TEST
List<String> parts2 = TableIdParser.parse(table2);
expected result:
parts2.size() = 2
parts2.get(0) = DP_TEST
parts2.get(1) = A.B.C.D
I know I'd avoid using dot or space in any identifier,but is it possible to support it?
- relates to
-
DBZ-865 Error when MongoDB collection contains characters not compatible with kafka topic naming
- Closed