Skip to content

Commit 85fba25

Browse files
authored
Merge pull request quarkusio#36333 from beikov/orm-update
Prepare for ORM update
2 parents 0095d5f + 129c2ca commit 85fba25

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

extensions/hibernate-orm/deployment/src/test/java/io/quarkus/hibernate/orm/dev/HibernateOrmDevInfoServiceTestResource.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,8 @@ public String checkPuInfoWithFailingDDLGeneration() {
8383
HibernateOrmDevInfo.Entity::getTableName);
8484

8585
assertThat(pu.getCreateDDL())
86-
.contains("Error creating SQL create commands for table : MyEntityTable")
87-
.contains("org.hibernate.HibernateException: No type mapping for org.hibernate.type.SqlTypes code: "
88-
+ TypeWithUnsupportedSqlCode.UNSUPPORTED_SQL_CODE + " (UNKNOWN("
86+
.contains("MyEntityTable")
87+
.contains(TypeWithUnsupportedSqlCode.UNSUPPORTED_SQL_CODE + " (UNKNOWN("
8988
+ TypeWithUnsupportedSqlCode.UNSUPPORTED_SQL_CODE + "))");
9089
// Drop script generation doesn't involve column types, so it didn't fail
9190
assertThat(pu.getDropDDL())

0 commit comments

Comments
 (0)