Rename schema-oracle10g.sql to schema-oracle.sql

Resolves ##1057
This commit is contained in:
Mahmoud Ben Hassine
2022-03-22 17:29:59 +01:00
parent 15e18e5fcd
commit 984570a1b1
9 changed files with 8 additions and 8 deletions

View File

@@ -5,8 +5,8 @@ batch.jdbc.url=jdbc:oracle:thin:@oracle:1521:xe
batch.jdbc.user=spring
batch.jdbc.password=spring
batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.OracleSequenceMaxValueIncrementer
batch.schema.script=classpath:/org/springframework/batch/core/schema-oracle10g.sql
batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-oracle10g.sql
batch.schema.script=classpath:/org/springframework/batch/core/schema-oracle.sql
batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-oracle.sql
batch.jdbc.testWhileIdle=false
batch.jdbc.validationQuery=

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2020-2021 the original author or authors.
* Copyright 2020-2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -73,7 +73,7 @@ public class OracleJobRepositoryIntegrationTests {
@Before
public void setUp() {
ResourceDatabasePopulator databasePopulator = new ResourceDatabasePopulator();
databasePopulator.addScript(new ClassPathResource("/org/springframework/batch/core/schema-oracle10g.sql"));
databasePopulator.addScript(new ClassPathResource("/org/springframework/batch/core/schema-oracle.sql"));
databasePopulator.execute(this.dataSource);
}

View File

@@ -6,9 +6,9 @@ batch.jdbc.user=spring
batch.jdbc.password=spring
batch.jdbc.testWhileIdle=false
batch.jdbc.validationQuery=
batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-oracle10g.sql
batch.schema.script=classpath:/org/springframework/batch/core/schema-oracle10g.sql
batch.business.schema.script=business-schema-oracle10g.sql
batch.drop.script=classpath:/org/springframework/batch/core/schema-drop-oracle.sql
batch.schema.script=classpath:/org/springframework/batch/core/schema-oracle.sql
batch.business.schema.script=business-schema-oracle.sql
batch.database.incrementer.class=org.springframework.jdbc.support.incrementer.OracleSequenceMaxValueIncrementer
batch.database.incrementer.parent=sequenceIncrementerParent
batch.lob.handler.class=org.springframework.jdbc.support.lob.OracleLobHandler

View File

@@ -1,4 +1,4 @@
platform=oracle10g
platform=oracle
# SQL language oddities
BIGINT = NUMBER(38)
IDENTITY =