Skip to content

Commit

Permalink
Merge pull request #115 from NandosUK/featue/NAP-398-commit-fix
Browse files Browse the repository at this point in the history
Featue/nap 398 commit fix
  • Loading branch information
nav-nandos authored Mar 7, 2022
2 parents 91c20fc + 64cf8b8 commit 228ac8f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion queries/commit.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

SELECT
sha,
TIMESTAMP_TRUNC(TIMESTAMP(author_date),second) as author_date,
Expand All @@ -7,7 +8,7 @@ TIMESTAMP_TRUNC(TIMESTAMP(committer_date),second) as committer_date,
committer_email,
committer_name,
message,
cast (repository_id as INT64) as repository_id
repository_id
FROM
(
SELECT
Expand All @@ -24,3 +25,5 @@ FROM
FROM `mgt-fourkeys-8d87d44d.four_keys.events_raw` e, UNNEST(JSON_EXTRACT_ARRAY(e.metadata, '$.commits')) as commit WHERE event_type = "push"
) issue
group by sha,author_date,author_email,author_name,committer_date,committer_email,committer_name,message,message,repository_id


0 comments on commit 228ac8f

Please sign in to comment.