remove hibernate.cache.provider_configuration_file_resource_path

this was unused
This commit is contained in:
Gavin King 2022-01-20 18:53:08 +01:00
parent 6cbfb30ea4
commit a84793bd6d
7 changed files with 1 additions and 12 deletions

View File

@ -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>

View File

@ -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() );
}

View File

@ -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() {

View File

@ -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() );
}

View File

@ -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() );
}

View File

@ -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

View File

@ -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,