From 52d5cc9f4a9e99c9fc6dbe76289bc1b030351c98 Mon Sep 17 00:00:00 2001 From: Andrea Boriero Date: Wed, 29 Oct 2025 15:52:34 +0100 Subject: [PATCH] [#2650] FetchModeSubselectEagerTest#testEagerFetchQuery throws NullPointerException The issue is solved by the Hibernate ORM upgrade to 7.2.0.CR2. See issue HHH-19874: https://hibernate.atlassian.net/browse/HHH-19874 --- .../org/hibernate/reactive/FetchModeSubselectEagerTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/hibernate-reactive-core/src/test/java/org/hibernate/reactive/FetchModeSubselectEagerTest.java b/hibernate-reactive-core/src/test/java/org/hibernate/reactive/FetchModeSubselectEagerTest.java index fd05f3942..490e06d0c 100644 --- a/hibernate-reactive-core/src/test/java/org/hibernate/reactive/FetchModeSubselectEagerTest.java +++ b/hibernate-reactive-core/src/test/java/org/hibernate/reactive/FetchModeSubselectEagerTest.java @@ -17,7 +17,6 @@ import org.hibernate.cfg.Configuration; import org.hibernate.reactive.util.impl.CompletionStages; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import io.vertx.junit5.Timeout; @@ -120,7 +119,6 @@ public void testEagerParentFetch(VertxTestContext context) { } @Test - @Disabled("NullPointerException: see https://hibernate.atlassian.net/browse/HHH-19874") public void testEagerFetchQuery(VertxTestContext context) { Node basik = new Node( "Child" ); basik.parent = new Node( "Parent" );