mirror of
https://github.com/dataease/dataease.git
synced 2026-06-17 13:01:44 +08:00
fix: 【数据集】数据预览中日期字段时间部分多了个.0
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user