remove hibernate.cache.provider_configuration_file_resource_path
this was unused
This commit is contained in:
parent
6cbfb30ea4
commit
a84793bd6d
hibernate-core/src
main/java/org/hibernate/cfg
test/java/org/hibernate/orm/test
|
@ -1167,11 +1167,6 @@ public interface AvailableSettings {
|
|||
*/
|
||||
String CACHE_KEYS_FACTORY = "hibernate.cache.keys_factory";
|
||||
|
||||
/**
|
||||
* The {@code CacheProvider} implementation class
|
||||
*/
|
||||
String CACHE_PROVIDER_CONFIG = "hibernate.cache.provider_configuration_file_resource_path";
|
||||
|
||||
/**
|
||||
* Enable the second-level cache.
|
||||
* <p>
|
||||
|
|
|
@ -54,7 +54,6 @@ public class CollectionCacheEvictionTest extends BaseCoreFunctionalTestCase {
|
|||
cfg.setProperty( Environment.AUTO_EVICT_COLLECTION_CACHE, "true" );
|
||||
cfg.setProperty( Environment.USE_SECOND_LEVEL_CACHE, "true" );
|
||||
cfg.setProperty( Environment.USE_QUERY_CACHE, "true" );
|
||||
cfg.setProperty( Environment.CACHE_PROVIDER_CONFIG, "true" );
|
||||
cfg.setProperty( DEFAULT_LIST_SEMANTICS, CollectionClassification.BAG.name() );
|
||||
}
|
||||
|
||||
|
|
|
@ -55,7 +55,6 @@ public class CollectionCacheEvictionWithoutMappedByTest extends BaseCoreFunction
|
|||
cfg.setProperty( Environment.AUTO_EVICT_COLLECTION_CACHE, "true" );
|
||||
cfg.setProperty( Environment.USE_SECOND_LEVEL_CACHE, "true" );
|
||||
cfg.setProperty( Environment.USE_QUERY_CACHE, "true" );
|
||||
cfg.setProperty( Environment.CACHE_PROVIDER_CONFIG, "true" );
|
||||
}
|
||||
|
||||
private People createPeople() {
|
||||
|
|
|
@ -44,7 +44,6 @@ public class LockModeTest extends BaseCoreFunctionalTestCase {
|
|||
cfg.setProperty( Environment.AUTO_EVICT_COLLECTION_CACHE, "true" );
|
||||
cfg.setProperty( Environment.USE_SECOND_LEVEL_CACHE, "true" );
|
||||
cfg.setProperty( Environment.USE_QUERY_CACHE, "true" );
|
||||
cfg.setProperty( Environment.CACHE_PROVIDER_CONFIG, "true" );
|
||||
cfg.setProperty( DEFAULT_LIST_SEMANTICS, CollectionClassification.BAG.name() );
|
||||
}
|
||||
|
||||
|
|
|
@ -50,7 +50,6 @@ public class ManyToManyCollectionCacheEvictionTest extends BaseCoreFunctionalTes
|
|||
cfg.setProperty( Environment.AUTO_EVICT_COLLECTION_CACHE, "true" );
|
||||
cfg.setProperty( Environment.USE_SECOND_LEVEL_CACHE, "true" );
|
||||
cfg.setProperty( Environment.USE_QUERY_CACHE, "true" );
|
||||
cfg.setProperty( Environment.CACHE_PROVIDER_CONFIG, "true" );
|
||||
cfg.setProperty( DEFAULT_LIST_SEMANTICS, CollectionClassification.BAG.name() );
|
||||
}
|
||||
|
||||
|
|
|
@ -54,7 +54,6 @@ public class RefreshUpdatedDataTest extends BaseCoreFunctionalTestCase {
|
|||
cfg.setProperty( Environment.CACHE_REGION_PREFIX, "" );
|
||||
cfg.setProperty( Environment.GENERATE_STATISTICS, "true" );
|
||||
cfg.setProperty( Environment.USE_SECOND_LEVEL_CACHE, "true" );
|
||||
cfg.setProperty( Environment.CACHE_PROVIDER_CONFIG, "true" );
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
|
@ -53,8 +53,7 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
|
|||
settings = {
|
||||
@Setting(name = AvailableSettings.ENABLE_LAZY_LOAD_NO_TRANS, value = "true"),
|
||||
@Setting(name = Environment.USE_SECOND_LEVEL_CACHE, value = "true"),
|
||||
@Setting(name = Environment.USE_QUERY_CACHE, value = "true"),
|
||||
@Setting(name = Environment.CACHE_PROVIDER_CONFIG, value = "true"),
|
||||
@Setting(name = Environment.USE_QUERY_CACHE, value = "true")
|
||||
},
|
||||
settingProviders = @SettingProvider(
|
||||
settingName = DEFAULT_LIST_SEMANTICS,
|
||||
|
|
Loading…
Reference in New Issue