6 - SQM based on JPA type system

This commit is contained in:
Andrea Boriero 2019-07-22 12:22:16 +01:00
parent 944e15ce12
commit b9d07df7f2
1 changed files with 6 additions and 0 deletions

View File

@ -21,6 +21,7 @@ import org.hibernate.boot.model.relational.Database;
import org.hibernate.cfg.annotations.NamedEntityGraphDefinition;
import org.hibernate.dialect.function.SQLFunction;
import org.hibernate.engine.spi.FilterDefinition;
import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.id.factory.IdentifierGeneratorFactory;
import org.hibernate.internal.SessionFactoryImpl;
import org.hibernate.mapping.FetchProfile;
@ -231,4 +232,9 @@ public abstract class AbstractDelegatingMetadata implements MetadataImplementor
public Set<MappedSuperclass> getMappedSuperclassMappingsCopy() {
return delegate.getMappedSuperclassMappingsCopy();
}
@Override
public NamedQueryRepository buildNamedQueryRepository(SessionFactoryImplementor sessionFactory) {
return delegate.buildNamedQueryRepository( sessionFactory );
}
}