Skip to content

Commit

Permalink
Rename schema-oracle10g.sql to schema-oracle.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
fmbenhassine authored and lcmarvin committed Apr 16, 2022
1 parent 7aee981 commit 5c645c2
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions spring-batch-core/src/main/resources/batch-oracle.properties
Expand Up @@ -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=

Expand Down
@@ -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.
Expand Down Expand Up @@ -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);
}

Expand Down
Expand Up @@ -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
Expand Down
@@ -1,4 +1,4 @@
platform=oracle10g
platform=oracle
# SQL language oddities
BIGINT = NUMBER(38)
IDENTITY =
Expand Down

0 comments on commit 5c645c2

Please sign in to comment.