-
Notifications
You must be signed in to change notification settings - Fork 565
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
Update Hibernate version to 6.2.7 #7426
Conversation
Signed-off-by: tvallin <thibault.vallin@oracle.com>
Signed-off-by: tvallin <thibault.vallin@oracle.com>
Signed-off-by: tvallin <thibault.vallin@oracle.com>
hibernate.connection.provider_class=org.hibernate.hikaricp.internal.HikariCPConnectionProvider | ||
hibernate.hikari.dataSourceClassName={{jdbcDataSource}} | ||
hibernate.hikari.dataSource.url={{databaseUrl}} | ||
hibernate.hikari.dataSource.user={{dbUser}} | ||
hibernate.hikari.dataSource.password={{password}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm; could you say why you needed to do this? Shouldn't be needed, but maybe you had a good reason to bypass our data source integration.
INSERT INTO POKEMON VALUES (1, 12, 'Bulbasaur'); | ||
INSERT INTO POKEMON VALUES (2, 10, 'Charmander'); | ||
INSERT INTO POKEMON VALUES (3, 11, 'Squirtle'); | ||
INSERT INTO POKEMON VALUES (4, 7, 'Caterpie'); | ||
INSERT INTO POKEMON VALUES (5, 7, 'Weedle'); | ||
INSERT INTO POKEMON VALUES (6, 3, 'Pidgey'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the root of the problem, right? That for some reason Hibernate 6.2.x has changed the order of DDL/column generation? I would like to better understand why that is.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See #7433
Description
Update Hibernate version to 6.2.7
Fix #6561
Documentation
no impact