Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -40,22 +40,22 @@ org.gradle.java.installations.auto-download=false
#db = MSSQL

# Enable the maven Central Snapshot repository, when set to any value (the value is ignored)
#enableCentralSonatypeSnapshotsRep = true
enableCentralSonatypeSnapshotsRep = true

# Enable the maven local repository (for local development when needed) when present (value ignored)
#enableMavenLocalRepo = true

### Settings the following properties will override the version defined in gradle/libs.versions.toml

# The default Hibernate ORM version (override using `-PhibernateOrmVersion=the.version.you.want`)
#hibernateOrmVersion = 7.1.1.Final
hibernateOrmVersion = 7.2.+

# Override default Hibernate ORM Gradle plugin version
#hibernateOrmGradlePluginVersion = 7.1.1.Final
hibernateOrmGradlePluginVersion = 7.2.+

# If set to true, skip Hibernate ORM version parsing (default is true, if set to null)
# this is required when using intervals or weird versions or the build will fail
#skipOrmVersionParsing = true
skipOrmVersionParsing = true

# Override default Vert.x Sql client version
#vertxSqlClientVersion = 5.0.2-SNAPSHOT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import org.hibernate.engine.jdbc.connections.spi.DatabaseConnectionInfo;
import org.hibernate.engine.jdbc.dialect.spi.DialectFactory;
import org.hibernate.engine.jdbc.dialect.spi.DialectResolutionInfo;
import org.hibernate.engine.jdbc.env.JdbcMetadataOnBoot;
import org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentImpl;
import org.hibernate.engine.jdbc.env.internal.JdbcEnvironmentInitiator;
import org.hibernate.engine.jdbc.env.spi.JdbcEnvironment;
Expand Down Expand Up @@ -79,6 +80,7 @@ protected JdbcEnvironmentImpl getJdbcEnvironmentWithDefaults(

@Override
protected JdbcEnvironmentImpl getJdbcEnvironmentUsingJdbcMetadata(
JdbcMetadataOnBoot jdbcMetadataAccess,
Map<String, Object> configurationValues,
ServiceRegistryImplementor registry,
DialectFactory dialectFactory,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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" );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ public <R extends Service> ServiceBinding<R> locateServiceBinding(Class<R> servi
public void destroy() {
}

@Override
public boolean isActive() {
return true;
}

@Override
public void registerChild(ServiceRegistryImplementor child) {
}
Expand Down
Loading