Skip to content

Commit 2a8110e

Browse files
pranavjandufmbenhassine
authored andcommitted
Update SQLServer DDL script to drop sequences instead of tables
Resolves #4373 (cherry picked from commit 384b8a0)
1 parent f82c16b commit 2a8110e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spring-batch-core/src/main/resources/org/springframework/batch/core/schema-drop-sqlserver.sql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ DROP TABLE BATCH_JOB_EXECUTION_PARAMS;
77
DROP TABLE BATCH_JOB_EXECUTION;
88
DROP TABLE BATCH_JOB_INSTANCE;
99

10-
DROP TABLE BATCH_STEP_EXECUTION_SEQ;
11-
DROP TABLE BATCH_JOB_EXECUTION_SEQ;
12-
DROP TABLE BATCH_JOB_SEQ;
10+
DROP SEQUENCE BATCH_STEP_EXECUTION_SEQ;
11+
DROP SEQUENCE BATCH_JOB_EXECUTION_SEQ;
12+
DROP SEQUENCE BATCH_JOB_SEQ;

0 commit comments

Comments
 (0)