fix: datetime(6) Loss of precision in the last 3 digits bug #1258

This commit is contained in:
justdba 2021-12-23 16:04:56 +08:00
parent 515dd00c43
commit 24e9ec63b8

View File

@ -89,7 +89,6 @@ public class DateColumn extends Column {
}
java.sql.Timestamp myts = new java.sql.Timestamp((Long) this.getRawData());
myts.setNanos(this.getRawNano());
myts.setNanos(this.getRawNano());
return myts;
// return new Date((Long)this.getRawData());
}