fix: 【数据集】数据预览中日期字段时间部分多了个.0

This commit is contained in:
taojinlong
2025-08-28 17:08:18 +08:00
parent 94824fdd04
commit a764bad56f

View File

@@ -739,7 +739,7 @@ public class CalciteProvider extends Provider {
break;
case Types.TIMESTAMP:
if (rs.getTimestamp(j + 1) != null) {
row[j] = rs.getTimestamp(j + 1).toString();
row[j] = rs.getString(j + 1);
}
break;
case Types.BOOLEAN: