-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cdc: large dates and timestamps are silently changed #37508
Comments
This may actually be a problem with the call to .UnixNano, suggesting that goavro only handles dates and timestamps whose nanosecond representation fits in an int64. |
@HonoreDB do we think this is still an issue? Otherwise lets close |
I'll look into it, I know goavro's improved their date handling on recent versions but they may not have fixed this. |
@HonoreDB please close this issue if it's stale. |
Close/stale -- will reopen if somebody complains. |
The goavro library uses int32s when marshaling dates and timestamps. If they don't fit in that size they are silently truncated.
Jira issue: CRDB-4426
The text was updated successfully, but these errors were encountered: