Skip to content

Commit f8684df

Browse files
author
Houssam El Mansouri
committed
Add support for Hibernate's hibernate.hbm2ddl.extra_physical_table_types
1 parent c7f02f0 commit f8684df

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

extensions/hibernate-orm/deployment/src/test/java/io/quarkus/hibernate/orm/config/properties/ConfigPropertiesTest.java

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,8 @@ public class ConfigPropertiesTest {
3434
.overrideConfigKey("quarkus.hibernate-orm.\"overrides\".datasource", "<default>")
3535
// Overrides to test that Quarkus configuration properties are taken into account
3636
.overrideConfigKey("quarkus.hibernate-orm.\"overrides\".flush.mode", "always")
37-
.overrideConfigKey("quarkus.hibernate-orm.schema-management.extra-physical-table-types",
38-
"MATERIALIZED VIEW,FOREIGN TABLE")
39-
.overrideConfigKey("quarkus.hibernate-orm.\"*\".schema-management.extra-physical-table-types",
40-
"MATERIALIZED VIEW,FOREIGN TABLE")
4137
.overrideConfigKey("quarkus.hibernate-orm.\"overrides\".schema-management.extra-physical-table-types",
42-
"MATERIALIZED VIEW,FOREIGN TABLE")
43-
// Disable metrics to avoid requiring metrics deployment artifacts on test classpath
44-
.overrideConfigKey("quarkus.smallrye-metrics.enabled", "false")
45-
.overrideConfigKey("quarkus.agroal.metrics.enabled", "false")
46-
.overrideConfigKey("quarkus.agroal.enabled", "false");
38+
"MATERIALIZED VIEW,FOREIGN TABLE");
4739

4840
@Inject
4941
Session sessionForDefaultPU;

0 commit comments

Comments
 (0)