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
{{ message }}
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.
“A Duration represents the elapsed time between two instants as an int64 nanosecond count. The representation limits the largest representable duration to approximately 290 years.” (source: godoc)
We don’t have a field at the moment that uses this field kind and I cannot foresee any field that might need it.
I want to remove that field kind because it is not used and more importantly because we cannot store int64 numbers in JSONB as that only can handle IEEE-754 double precision floating point values. So we eventually will reach a point at which we do loose precision.
Approval requested from:
Please check your name if you're fine with the removal.
A duration in Go is nothing but an int64:
We don’t have a field at the moment that uses this field kind and I cannot foresee any field that might need it.
I want to remove that field kind because it is not used and more importantly because we cannot store int64 numbers in JSONB as that only can handle IEEE-754 double precision floating point values. So we eventually will reach a point at which we do loose precision.
Approval requested from:
Please check your name if you're fine with the removal.
The text was updated successfully, but these errors were encountered: