Skip to content

Commit

Permalink
Update to Spring Boot 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mpuening committed Feb 16, 2024
1 parent 925c9aa commit 3c4b614
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ public void validatePassengerClassForRelationshipCreation() {
+ "left join planet dp1_0 on dp1_0.id=v1_0.departure_planet_id "
+ "left join planet dp2_0 on dp2_0.id=v1_0.destination_planet_id "
+ "left join ship s1_0 on s1_0.id=v1_0.ship_id "
+ "left join person c1_0 on s1_0.id=c1_0.ship_id "
+ "left join (select * from person t where t.type='CAPTAIN') c1_0 on s1_0.id=c1_0.ship_id "
+ "left join address a1_0 on a1_0.id=c1_0.home_address_id "
+ "left join planet p1_0 on p1_0.id=a1_0.planet_id "
+ "where r1_0.person_id=?")));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public void validateShipClassForExistingEntity() {
MatcherAssert.assertThat(getPrepared(proxyDataSource, statementIndex), DataSourceAssertMatchers.query(Matchers
.is("select s1_0.id,c1_0.id,c1_0.home_address_id,a1_0.id,a1_0.city,a1_0.planet_id,p1_0.id,p1_0.name,a1_0.street,c1_0.name,s1_0.name,s1_0.ship_class "
+ "from ship s1_0 "
+ "left join person c1_0 on s1_0.id=c1_0.ship_id "
+ "left join (select * from person t where t.type='CAPTAIN') c1_0 on s1_0.id=c1_0.ship_id "
+ "left join address a1_0 on a1_0.id=c1_0.home_address_id "
+ "left join planet p1_0 on p1_0.id=a1_0.planet_id "
+ "where s1_0.id=?")));
Expand Down Expand Up @@ -103,7 +103,7 @@ public void validateShipClassForRelationshipUpdate() {
MatcherAssert.assertThat(getPrepared(proxyDataSource, statementIndex), DataSourceAssertMatchers.query(Matchers
.is("select s1_0.id,c1_0.id,c1_0.home_address_id,a1_0.id,a1_0.city,a1_0.planet_id,p1_0.id,p1_0.name,a1_0.street,c1_0.name,s1_0.name,s1_0.ship_class "
+ "from ship s1_0 "
+ "left join person c1_0 on s1_0.id=c1_0.ship_id "
+ "left join (select * from person t where t.type='CAPTAIN') c1_0 on s1_0.id=c1_0.ship_id "
+ "left join address a1_0 on a1_0.id=c1_0.home_address_id "
+ "left join planet p1_0 on p1_0.id=a1_0.planet_id "
+ "where s1_0.id=?")));
Expand Down Expand Up @@ -167,7 +167,7 @@ public void validateShipClassForRelationshipRemoveCabin() {
MatcherAssert.assertThat(getPrepared(proxyDataSource, statementIndex), DataSourceAssertMatchers.query(Matchers
.is("select s1_0.id,c1_0.id,c1_0.home_address_id,a1_0.id,a1_0.city,a1_0.planet_id,p1_0.id,p1_0.name,a1_0.street,c1_0.name,s1_0.name,s1_0.ship_class "
+ "from ship s1_0 "
+ "left join person c1_0 on s1_0.id=c1_0.ship_id "
+ "left join (select * from person t where t.type='CAPTAIN') c1_0 on s1_0.id=c1_0.ship_id "
+ "left join address a1_0 on a1_0.id=c1_0.home_address_id "
+ "left join planet p1_0 on p1_0.id=a1_0.planet_id "
+ "where s1_0.id=?")));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void validateVoyageClassForExistingEntity() {
+ "from voyage v1_0 join planet dp1_0 on dp1_0.id=v1_0.departure_planet_id "
+ "join planet dp2_0 on dp2_0.id=v1_0.destination_planet_id "
+ "join ship s1_0 on s1_0.id=v1_0.ship_id "
+ "left join person c1_0 on s1_0.id=c1_0.ship_id "
+ "left join (select * from person t where t.type='CAPTAIN') c1_0 on s1_0.id=c1_0.ship_id "
+ "left join address a1_0 on a1_0.id=c1_0.home_address_id "
+ "left join planet p1_0 on p1_0.id=a1_0.planet_id "
+ "where v1_0.id=?")));
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.0</version>
<version>3.2.2</version>
<relativePath />
</parent>

Expand Down

0 comments on commit 3c4b614

Please sign in to comment.