update format adding DATE datatype option

This commit is contained in:
wyq 2025-07-28 08:26:26 +08:00
parent 12121f5b58
commit fd628959f3

View File

@ -216,6 +216,11 @@ public class Column {
formatLen = Math.max(formatLen, smax.length());
this.format = "%" + String.valueOf(formatLen) + "d";
break;
case DATE:
if (dateTimeFormatter == null) {
dateTimeFormatter = DateTimeFormatter.ISO_DATE_TIME;
}
break;
default:
String v;
for (int i = 0; i < data.getSize(); i++){