mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-23 09:49:01 +00:00
Map oracle->oracle10g for Batch schema initialization
Fixes gh-892
This commit is contained in:
+3
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user