Skip to content

Commit

Permalink
fix: change pull request id type from INT to BIGINT (#2935)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jabolol authored Feb 2, 2025
1 parent 01de9d5 commit 1cd050b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ select distinct
pre.repo.id as repository_id,
pre.repo.name as repository_name,
'PULL_REQUEST_MERGED' as "type",
json_extract(pre.payload, '$.pull_request.id')::INT as id,
json_extract(pre.payload, '$.pull_request.id')::BIGINT as id,
strptime(
json_extract_string(pre.payload, '$.pull_request.merged_at'),
'%Y-%m-%dT%H:%M:%SZ'
Expand Down

0 comments on commit 1cd050b

Please sign in to comment.