You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If inserting a Pandas Timestamp object with nanosecond precision into a ClickHouse column with datatype DateTime(9) (which should have nanosecond precision), the nanosecond value is lost. The root cause is that the underlying transformation to a ClickHouse type for Pandas Timestamp includes a conversion to a Python datetime.datetime, which only has microsecond precision.
The text was updated successfully, but these errors were encountered:
If inserting a Pandas Timestamp object with nanosecond precision into a ClickHouse column with datatype DateTime(9) (which should have nanosecond precision), the nanosecond value is lost. The root cause is that the underlying transformation to a ClickHouse type for Pandas Timestamp includes a conversion to a Python datetime.datetime, which only has microsecond precision.
The text was updated successfully, but these errors were encountered: