Skip to content

Commit

Permalink
#813 | Use small case batch_job_execution_params table name
Browse files Browse the repository at this point in the history
  • Loading branch information
himeshr committed Dec 18, 2024
1 parent e94f3ce commit d3b683c
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ $$
(SELECT 1
FROM information_schema.tables
WHERE table_schema = 'public'
AND table_name = 'BATCH_JOB_EXECUTION_PARAMS'
AND table_name = 'batch_job_execution_params'
)
THEN
UPDATE BATCH_JOB_EXECUTION_PARAMS bjep
UPDATE batch_job_execution_params bjep
set string_val = long_val::text
where type_cd = 'LONG';
UPDATE BATCH_JOB_EXECUTION_PARAMS bjep
UPDATE batch_job_execution_params bjep
set string_val = date_val::text
where type_cd = 'DATE';
UPDATE BATCH_JOB_EXECUTION_PARAMS bjep
UPDATE batch_job_execution_params bjep
set string_val = double_val::text
where type_cd = 'DOUBLE';
END IF;
Expand Down

0 comments on commit d3b683c

Please sign in to comment.