Skip to content

Commit

Permalink
Fix casting error.
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Chrzan <[email protected]>
Signed-off-by: mchrza <[email protected]>
  • Loading branch information
mchrza committed Dec 13, 2024
1 parent 03e9184 commit 2be159c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ BEGIN
work_item ->> 's3_path',
work_item ->> 's3_region',
format,
(work_item -> 'filesize')::BIGINT);
CASE WHEN (work_item -> 'filesize') = 'null'::jsonb THEN 0 ELSE (work_item -> 'filesize')::BIGINT END);
ELSE
PERFORM export_to_s3_perform(content_query, (work_item ->> 's3_bucket'), (work_item ->> 's3_path'), (work_item ->> 's3_region'));
END IF;
Expand Down

0 comments on commit 2be159c

Please sign in to comment.