Skip to content

Commit

Permalink
HSEARCH-5244 Upgrade to Hibernate ORM 6.6.1.Final
Browse files Browse the repository at this point in the history
  • Loading branch information
marko-bekhta committed Sep 19, 2024
1 parent d0c560f commit ca789f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
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

0 comments on commit ca789f3

Please sign in to comment.