[Explorer] Execution failed for question 1212077c-808d-4476-8cf7-6914512b58da: what are top contributors from poland
lukaszgryglicki opened this issue · 0 comments
lukaszgryglicki commented
Hi, It's failed to execute the question 1212077c-808d-4476-8cf7-6914512b58da what are top contributors from poland (errorType = error-query-timeout):
- executedAt: 2024-07-08T19:06:54.000+00:00
- requestedAt: 2024-07-08T19:06:54.000+00:00
Error message
Query inactivity timeout
Generated SQL
SELECT
gu.login AS user_login,
COUNT(*) AS contributions
FROM
github_events AS ge
JOIN github_users AS gu ON ge.actor_id = gu.id
WHERE
gu.country_code = 'PL'
AND ge.actor_login NOT LIKE '%bot%'
GROUP BY
user_login
ORDER BY
contributions DESC
LIMIT
20