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 was archived by the owner on Jan 28, 2021. It is now read-only.
Minimal sql (limits added to make it faster, fails without limits too):
SELECT repository_id,
COUNT(file_path)
FROM
(SELECTfiles.repository_id,
file_path
FROM files
NATURAL JOIN commit_files
NATURAL JOIN refs
WHERE ref_name ='HEAD'LIMIT10) AS expr_qry
GROUP BY repository_id
ORDER BYCOUNT(file_path) ASCLIMIT1;