5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-05 04:20:08 +08:00

SQOOP-1169: Sqoop2: org.apache.sqoop.repository.schema.immutable should default to false

(Hari Shreedharan via Venkat Ranganathan)
This commit is contained in:
Venkat Ranganathan 2013-08-09 13:48:57 -07:00
parent 21c1207b79
commit 72f0ff1c74

View File

@ -113,7 +113,8 @@ public synchronized void initialize() {
provider.initialize(context);
if(!context.getBoolean(RepoConfigurationConstants.SYSCFG_REPO_SCHEMA_IMMUTABLE, true)) {
if(!context.getBoolean(RepoConfigurationConstants
.SYSCFG_REPO_SCHEMA_IMMUTABLE, false)) {
LOG.info("Creating or upgrading on disk structures if necessary");
provider.getRepository().createOrUpdateInternals();
}