Skip to content

Commit

Permalink
#813 | Use parameter_value instead of long_val
Browse files Browse the repository at this point in the history
  • Loading branch information
himeshr committed Dec 18, 2024
1 parent 91d0ea5 commit e94f3ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public String getLastJobStatusForSubjectType(SubjectType subjectType) {
" left join batch_job_execution_params bjep on bje.job_execution_id = bjep.job_execution_id\n" +
"where i.job_name = 'syncAttributesJob'\n" +
" and bjep.parameter_name = 'subjectTypeId'\n" +
" and long_val = :subjectTypeId\n" +
" and bjep.parameter_value = :subjectTypeId::text\n" +
" and start_time is not null\n" +
"order by start_time desc\n" +
"limit 1;";
Expand Down

0 comments on commit e94f3ce

Please sign in to comment.