Map oracle->oracle10g for Batch schema initialization

Fixes gh-892
This commit is contained in:
Dave Syer
2014-05-17 06:51:35 +01:00
parent 58379e7593
commit 53ff50adb6

View File

@@ -68,6 +68,9 @@ public class BatchDatabaseInitializer implements EnvironmentAware {
if ("postgres".equals(platform)) {
platform = "postgresql";
}
if ("oracle".equals(platform)) {
platform = "oracle10g";
}
ResourceDatabasePopulator populator = new ResourceDatabasePopulator();
String schemaLocation = this.environment.getProperty("schema",
DEFAULT_SCHEMA_LOCATION);