Skip to content

Commit 1322f91

Browse files
quafffmbenhassine
authored andcommitted
Improve performance in JdbcStepExecutionDao
It's similar to cafd35c
1 parent f3ad8b3 commit 1322f91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-batch-core/src/main/java/org/springframework/batch/core/repository/dao/JdbcStepExecutionDao.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public class JdbcStepExecutionDao extends AbstractJdbcBatchMetadataDao implement
110110
" from %PREFIX%JOB_EXECUTION JE, %PREFIX%STEP_EXECUTION SE" +
111111
" where " +
112112
" SE.JOB_EXECUTION_ID in (SELECT JOB_EXECUTION_ID from %PREFIX%JOB_EXECUTION " +
113-
"where JE.JOB_INSTANCE_ID = ?)" +
113+
"where JOB_INSTANCE_ID = ?)" +
114114
" and SE.JOB_EXECUTION_ID = JE.JOB_EXECUTION_ID " +
115115
" and SE.STEP_NAME = ?";
116116

0 commit comments

Comments
 (0)