Skip to content

Commit

Permalink
fix: improve step exec id sql
Browse files Browse the repository at this point in the history
  • Loading branch information
klopfdreh committed Jul 24, 2023
1 parent af429be commit ea0bb9d
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ public class JdbcDataflowJobExecutionDao implements DataflowJobExecutionDao {
*/
private static final String SELECT_STEP_EXECUTION_IDS =
"SELECT SEC.STEP_EXECUTION_ID AS STEP_EXECUTION_ID " +
"FROM %PREFIX%STEP_EXECUTION_CONTEXT SEC " +
"JOIN %PREFIX%STEP_EXECUTION SE ON SE.STEP_EXECUTION_ID = SEC.STEP_EXECUTION_ID " +
"WHERE SE.JOB_EXECUTION_ID in (:jobExecutionIds)";
"FROM %PREFIX%STEP_EXECUTION_CONTEXT SEC, %PREFIX%STEP_EXECUTION SE " +
"WHERE SE.JOB_EXECUTION_ID in (:jobExecutionIds) " +
"AND SE.STEP_EXECUTION_ID = SEC.STEP_EXECUTION_ID";

/**
* SQL statements for removing the Step Execution Context.
Expand Down

0 comments on commit ea0bb9d

Please sign in to comment.