Skip to content

Commit

Permalink
HHH-19011 Backport to 6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
chandre92 authored and beikov committed Jan 16, 2025
1 parent 9645ebf commit 973da8c
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.integrator.spi.Integrator;
import org.hibernate.mapping.PersistentClass;
import org.hibernate.service.spi.SessionFactoryServiceRegistry;
import org.hibernate.testing.orm.junit.BootstrapServiceRegistry;
import org.hibernate.testing.orm.junit.DomainModel;
import org.hibernate.testing.orm.junit.JiraKey;
Expand Down Expand Up @@ -69,5 +70,10 @@ public static class MetadataIntegrator implements Integrator {
public void integrate(Metadata metadata, BootstrapContext bootstrapContext, SessionFactoryImplementor sessionFactory) {
METADATA = metadata;
}

@Override
public void disintegrate(SessionFactoryImplementor sessionFactory, SessionFactoryServiceRegistry serviceRegistry) {
// do nothing
}
}
}

0 comments on commit 973da8c

Please sign in to comment.