Skip to content
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

HSEARCH-5244 Upgrade to Hibernate ORM 6.6.1.Final #4324

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/parents/build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
NOTE: when Hibernate ORM updates Byte Buddy, make sure to check Jenkinsfile to see if
`net.bytebuddy.experimental` property can be removed.
-->
<version.org.hibernate.orm>6.6.0.Final</version.org.hibernate.orm>
<version.org.hibernate.orm>6.6.1.Final</version.org.hibernate.orm>

<javadoc.org.hibernate.orm.url>https://docs.jboss.org/hibernate/orm/${parsed-version.org.hibernate.orm.majorVersion}.${parsed-version.org.hibernate.orm.minorVersion}/javadocs/</javadoc.org.hibernate.orm.url>
<documentation.org.hibernate.orm.url>https://docs.jboss.org/hibernate/orm/${parsed-version.org.hibernate.orm.majorVersion}.${parsed-version.org.hibernate.orm.minorVersion}/userguide/html_single/Hibernate_User_Guide.html</documentation.org.hibernate.orm.url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,9 @@ void singleEntity_notTopOne() {
statementInspector.hasSelects( 3 )
// select count(bv1_0.id) from bedvehicle bv1_0
.anyMatch( "select count(_big)?\\([a-z0-9_.]+\\) from bedvehicle [a-z0-9_.]+" )
// select bv1_0.id from bedvehicle bv1_0
.anyMatch( "select [a-z0-9_.]+ from bedvehicle [a-z0-9_.]+" )
// there can be an additional join see https://hibernate.atlassian.net/browse/HHH-18503?focusedCommentId=116667
// select bv1_1.id from bedvehicle bv1_0 join baseentity bv1_1 on bv1_0.id=bv1_1.id
.anyMatch( "select [a-z0-9_.]+ from bedvehicle [a-z0-9_.]+ join baseentity [a-z0-9_.]+ on [a-z0-9_.=]+" )
// select bv1_0.id,bv1_1.type,bv1_2.bodytype,bv1_3.doortype,bv1_0.bedtype,bv1_4.truckroof
// from bedvehicle bv1_0 join baseentity bv1_1 on bv1_0.id=bv1_1.id join basevehicle bv1_2 on bv1_0.id=bv1_2.id join dooredvehicle bv1_3 on bv1_0.id=bv1_3.id left join truck bv1_4 on bv1_0.id=bv1_4.id where bv1_0.id=?
.anyMatch( "select [a-z0-9_.,]+ from bedvehicle [a-z0-9_.]+ "
Expand Down Expand Up @@ -383,8 +384,9 @@ void multipleSameBranch() {
statementInspector.hasSelects( 3 )
// select count(bv1_0.id) from bedvehicle bv1_0
.anyMatch( "select count(_big)?\\([a-z0-9_.]+\\) from bedvehicle [a-z0-9_.]+" )
// select bv1_0.id from bedvehicle bv1_0
.anyMatch( "select [a-z0-9_.]+ from bedvehicle [a-z0-9_.]+" )
// there can be an additional join see https://hibernate.atlassian.net/browse/HHH-18503?focusedCommentId=116667
// select bv1_1.id from bedvehicle bv1_0 join baseentity bv1_1 on bv1_0.id=bv1_1.id
.anyMatch( "select [a-z0-9_.]+ from bedvehicle [a-z0-9_.]+ join baseentity [a-z0-9_.]+ on [a-z0-9_.=]+" )
// select bv1_0.id,bv1_1.type,bv1_2.bodytype,bv1_3.doortype,bv1_0.bedtype,bv1_4.truckroof
// from bedvehicle bv1_0 join baseentity bv1_1 on bv1_0.id=bv1_1.id join basevehicle bv1_2 on bv1_0.id=bv1_2.id join dooredvehicle bv1_3 on bv1_0.id=bv1_3.id left join truck bv1_4 on bv1_0.id=bv1_4.id where bv1_0.id=?
.anyMatch( "select [a-z0-9_.,]+ from bedvehicle [a-z0-9_.]+ "
Expand Down