You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 28, 2021. It is now read-only.
SELECT
added,
deleted,
commit_author_when,
commit_hash,
repository_id,
CASE WHEN deleted < (added+deleted)*0.1 THEN 'Added' WHEN added < (added+deleted)*0.1 THEN 'Deleted' ELSE 'Changed' END AS commit_type
FROM (
SELECT
JSON_EXTRACT(stats, "$.Total.Additions") as added,
JSON_EXTRACT(stats, "$.Total.Deletions") as deleted,
commit_author_when,
commit_hash,
repository_id
FROM (
SELECT
repository_id,
commit_author_when,
commit_hash,
commit_stats(repository_id, commit_hash) as stats
FROM refs
natural join ref_commits
natural join commits
--where refs.ref_name="HEAD"
) q
) q2;
The text was updated successfully, but these errors were encountered:
This error is happening on this query:
The text was updated successfully, but these errors were encountered: