open-github-issues / code /largest_prs.sql
tamnd's picture
sync 8 repos — 2026-04-05 06:22 UTC
95edd9c verified
raw
history blame contribute delete
274 Bytes
-- Largest PRs by lines changed
SELECT
number,
additions,
deletions,
changed_files,
additions + deletions as total_lines
FROM read_parquet('hf://datasets/open-index/open-github-issues/data/pull_requests/**/0.parquet')
ORDER BY total_lines DESC
LIMIT 20;