Removed deprecated QueryEngine.DEFAULT_PARAMETER_METADATA_MAX_COUNT

Signed-off-by: Jan Schatteman <jschatte@redhat.com>
This commit is contained in:
Jan Schatteman 2022-03-08 16:59:50 +01:00 committed by Steve Ebersole
parent 4669fc7c4c
commit 2244ab8e61
2 changed files with 0 additions and 10 deletions

View File

@ -1390,8 +1390,6 @@ public interface AvailableSettings {
* The maximum number of {@link org.hibernate.query.ParameterMetadata} instances
* maintained by the {@link org.hibernate.query.spi.QueryInterpretationCache}.
* <p>
* The default maximum is
* {@value org.hibernate.query.spi.QueryEngine#DEFAULT_PARAMETER_METADATA_MAX_COUNT}.
*
* @deprecated this setting is not currently used
*/

View File

@ -62,14 +62,6 @@ public class QueryEngine {
*/
public static final int DEFAULT_QUERY_PLAN_MAX_COUNT = 2048;
/**
* The default strong reference count.
*
* @deprecated No longer used
*/
@Deprecated
public static final int DEFAULT_PARAMETER_METADATA_MAX_COUNT = 128;
private static final Logger LOG_HQL_FUNCTIONS = CoreLogging.logger( "org.hibernate.HQL_FUNCTIONS" );
public static QueryEngine from(SessionFactoryImplementor sessionFactory, MetadataImplementor metadata) {