6 - SQM based on JPA type system
This commit is contained in:
parent
944e15ce12
commit
b9d07df7f2
|
@ -21,6 +21,7 @@ import org.hibernate.boot.model.relational.Database;
|
||||||
import org.hibernate.cfg.annotations.NamedEntityGraphDefinition;
|
import org.hibernate.cfg.annotations.NamedEntityGraphDefinition;
|
||||||
import org.hibernate.dialect.function.SQLFunction;
|
import org.hibernate.dialect.function.SQLFunction;
|
||||||
import org.hibernate.engine.spi.FilterDefinition;
|
import org.hibernate.engine.spi.FilterDefinition;
|
||||||
|
import org.hibernate.engine.spi.SessionFactoryImplementor;
|
||||||
import org.hibernate.id.factory.IdentifierGeneratorFactory;
|
import org.hibernate.id.factory.IdentifierGeneratorFactory;
|
||||||
import org.hibernate.internal.SessionFactoryImpl;
|
import org.hibernate.internal.SessionFactoryImpl;
|
||||||
import org.hibernate.mapping.FetchProfile;
|
import org.hibernate.mapping.FetchProfile;
|
||||||
|
@ -231,4 +232,9 @@ public abstract class AbstractDelegatingMetadata implements MetadataImplementor
|
||||||
public Set<MappedSuperclass> getMappedSuperclassMappingsCopy() {
|
public Set<MappedSuperclass> getMappedSuperclassMappingsCopy() {
|
||||||
return delegate.getMappedSuperclassMappingsCopy();
|
return delegate.getMappedSuperclassMappingsCopy();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public NamedQueryRepository buildNamedQueryRepository(SessionFactoryImplementor sessionFactory) {
|
||||||
|
return delegate.buildNamedQueryRepository( sessionFactory );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue