Sign in
apache
/
doris
/
refs/heads/fix-null-offset-array
/
.
/
regression-test
/
suites
/
github_events_p2
/
sql
/
issuesWithTheMostComments7.sql
blob: f7b2e2b933afd65e1f4ad74a85469d20bac17b5f [
file
]
SELECT
repo_name
,
count
()
AS
comments
,
count
(
distinct
actor_login
)
AS
authors
FROM
github_events
WHERE
event_type
=
'CommitCommentEvent'
GROUP
BY
repo_name
ORDER
BY
count
()
DESC
LIMIT
50