-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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
Support TIMESTAMPS with precisions higher than 3 in MySQL #6910
Comments
For properly supporting reading Any driver older than that doesn't return the precision for temporal data tyes. And any server version older than To finish this work I'm working on upgrading the JDBC driver first. NOTE: Trying to read as a |
Fixed by merging #8060. |
timestamp/datetime
values asTIMESTAMP(3)
and only supports writingTIMESTAMP(3)
even though MySQL supports values upto precision 6.While making this change, proper tests should be added to assert both
datetime
andtimestamp
values round-trip properly (where possible).rel #5449
The text was updated successfully, but these errors were encountered: