mirror of
https://github.com/alibaba/DataX.git
synced 2025-05-02 13:02:22 +08:00
fix: datetime(6) Loss of precision in the last 3 digits bug #1258
This commit is contained in:
parent
515dd00c43
commit
24e9ec63b8
@ -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());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user