Issues
- MySQL57Dialect selected by automatic dialect resolution when using MySQL 8.0 databaseHHH-13910Resolved issue: HHH-13910Former user
- ResultSetProcessingContextImpl: no need to clear collections before discarding the reference to themHHH-13897Resolved issue: HHH-13897Sanne Grinovero
- ProxyFactory should not be built if any ID or property getter/setter methods are finalHHH-13891Resolved issue: HHH-13891Former user
- Slow query log should use System#nanoTime not System#currentTimeMillisHHH-13879Resolved issue: HHH-13879Vlad Mihalcea
- Increase the scope of some methods to make them accessible outside of Hibernate ORMHHH-13878Resolved issue: HHH-13878Davide D'Alto
- Fix an obvious bug in StandardStack implementationHHH-13876Resolved issue: HHH-13876Nathan Xu
- Optional one-to-one does not always join the associated entity table when queryingHHH-13875Resolved issue: HHH-13875Former user
- Deprecate relevant methods that are supposed to be removed in v6.0HHH-13874Resolved issue: HHH-13874Safeer A
- IdTableHelper can skip opening a connection when there's no statements to executeHHH-13873Resolved issue: HHH-13873Sanne Grinovero
- Make the Java Stream close the underlying ScrollableResultsIterator upon calling a terminal operationHHH-13872Resolved issue: HHH-13872Vlad Mihalcea
- Gradle plugin causes compile task to be always out of dateHHH-13870Resolved issue: HHH-13870Christoph Dreis
- Remove unnecessary declaration of JtaManager in HibernatePersistenceProviderAdaptorHHH-13855Resolved issue: HHH-13855Safeer A
- Pass the merged Integration settings and Persistence Unit properties to buildBootstrapServiceRegistryHHH-13853Resolved issue: HHH-13853Vlad Mihalcea
- JPA Criteria API support for Hibernate SpatialHHH-13799Resolved issue: HHH-13799Karel Maesen
- H2 dialect not accurate for drop table since version 1.4.200HHH-13711Resolved issue: HHH-13711Romain Moreau
- size() does not work properly as select expressionHHH-13619Resolved issue: HHH-13619Steve Ebersole
- Sequence increment is not correctly determinedHHH-13322Resolved issue: HHH-13322Nathan Xu
- Allow Hibernate Types to get access to the current configuration properties using constructor injectionHHH-13103Resolved issue: HHH-13103Vlad Mihalcea
18 of 18
MySQL57Dialect selected by automatic dialect resolution when using MySQL 8.0 database
Fixed
Details
Assignee
Former userFormer user(Deactivated)Reporter
Former userFormer user(Deactivated)Components
Affects versions
Priority
Major
Details
Details
Assignee
Former user
Former user(Deactivated)Reporter
Former user
Former user(Deactivated)Components
Affects versions
Priority
Created March 26, 2020 at 1:37 PM
Updated March 27, 2020 at 5:03 AM
Resolved March 27, 2020 at 4:27 AM
Activity
Show:
Former userMarch 27, 2020 at 4:27 AM
Fixed in master and 5.3 branches.
Nathan XuMarch 26, 2020 at 4:24 PMEdited
Not sure whether this ticket is related to a Spring Jira ticket: https://github.com/spring-projects/spring-framework/issues/22326
With MySQL 8 (e.g. 8.0.19),
MySQL57Dialect
is selected instead ofMySQL8Dialect
. Wrote a test that was examining the connection metadata:... INFO ... HHH000400: Using dialect: org.hibernate.dialect.MySQL57Dialect ... ... INFO ... Database server : MySQL 8.0.19 ... INFO ... Database driver : MySQL Connector/J mysql-connector-java-8.0.19 (Revision: a0ca826f5cdf51a98356fdfb1bf251eb042f80bf)