Commit 53ff50ad authored by Dave Syer's avatar Dave Syer

Map oracle->oracle10g for Batch schema initialization

Fixes gh-892
parent 58379e75
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment