-
Notifications
You must be signed in to change notification settings - Fork 1.3k
updated go-mysql library #499
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
Conversation
|
This one is failing local tests in the meantime. |
|
There's an inconsistency of timzone handling between |
|
In MySQL, the timestamp-type is physically stored as a UNIX-epoch-based numeric value, So datetime-values should always be copied as-is, as they have no inherent timezone. This of course makes alters that switch between these types problematic, With timestamp-values, one should simply always copy the raw UNIX-epoch-based numerical value, but there is no good functionality for that on the SQL-level. |
I am indeed very much aware of both. Interestingly, B.com delivered the first non trivial TZ use case where the two did not agree with each other. Also of interest is that binary logs always store timestamps as UTC, so they convert them, while |
|
|
Periodic update of the
go-mysqllibrary. Among other things, tackling #496