[fix](common) If the properties in DDL is not provided, the mysql client will lost connection (#30256)

This commit is contained in:
allenhooo
2024-01-29 14:49:53 +08:00
committed by yiguolei
parent 11f1b129c0
commit db094da081

View File

@ -93,6 +93,9 @@ public class PrintableMap<K, V> {
@Override
public String toString() {
if (map == null) {
return "";
}
StringBuilder sb = new StringBuilder();
Iterator<Map.Entry<K, V>> iter = showEntries().iterator();
while (iter.hasNext()) {