From 7729747163544df331b09a3a3836c52ab506757c Mon Sep 17 00:00:00 2001 From: Oliver Drotbohm Date: Wed, 12 Apr 2023 11:33:26 +0200 Subject: [PATCH] Temporarily disable stored procedure tests for Postgres. On Hibernate 6.2 these tests run into class loading problems on CI (likely related to [0]). Cleanup is tracked in #2911. Related ticket: #2899. [0 https://hibernate.atlassian.net/browse/HHH-15790] --- .../procedures/PostgresStoredProcedureIntegrationTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/procedures/PostgresStoredProcedureIntegrationTests.java b/spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/procedures/PostgresStoredProcedureIntegrationTests.java index 88e560b12..b6997ef25 100644 --- a/spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/procedures/PostgresStoredProcedureIntegrationTests.java +++ b/spring-data-jpa/src/test/java/org/springframework/data/jpa/repository/procedures/PostgresStoredProcedureIntegrationTests.java @@ -36,6 +36,7 @@ import java.util.Properties; import javax.sql.DataSource; import org.hibernate.dialect.PostgreSQLDialect; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.extension.ExtendWith; import org.postgresql.ds.PGSimpleDataSource; @@ -67,6 +68,7 @@ import org.testcontainers.containers.PostgreSQLContainer; * @author Greg Turnquist * @author Yanming Zhou */ +@Disabled @Transactional @ExtendWith(SpringExtension.class) @ContextConfiguration(classes = PostgresStoredProcedureIntegrationTests.Config.class)