-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
LocalDateTimeTypeHandler failing with TIMESTAMPTZ #1644
Comments
Hi @asturcon , Yes, the implementation was changed and A short-term solution is to copy the old LocalDateTimeTypeHandler to your project and register it in your config. |
Hi @harawata, Ok, I can work it out by using the old handler or keep using mybatis 3.5.0 until the driver supports this conversion (I'm using the latest version of the driver already). It's not a problem for now. Thank you! |
Hi @harawata, |
Assuming that your type handler's fully-qualified-name is type-handlers-package=foo.bar See the doc for the details. |
BUG REPORT
MyBatis version
3.5.2 and 3.5.1
Database vendor and version
PostgreSQL 11.3
Test case or example project
DB table:
ResultMap in mapper:
Java class where we are mapping the result:
Query to get the error:
Steps to reproduce
Just run that query.
Expected result
The java object is populated without errors.
Actual result
Error example:
Comments
In mybatis 3.5.0 it works. The code of the
LocalDateTimeTypeHandler
has been changed after this version.The text was updated successfully, but these errors were encountered: