Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Featue/nap 398 commit fix #115

Merged
merged 2 commits into from
Mar 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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