10 lines
327 B
SQL
10 lines
327 B
SQL
SELECT commitdate AS commitdate, COUNT(*) as count FROM
|
|
(
|
|
SELECT
|
|
[hash] AS hash, min([author_email]) AS mail1, min([committer_email]) AS mail2, date(min([date])) AS commitdate
|
|
FROM COMMITS
|
|
GROUP BY hash
|
|
HAVING (strftime('%Y', commitdate) = :year AND (/*{INDETITY_COND}*/))
|
|
)
|
|
GROUP BY commitdate
|
|
ORDER BY commitdate |