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
- Add aliases to supportedLanguages slice to check also alias names.
- Make IsSupported to check lang names in lower case.
- Update go-mysql-server to fix some nil handling errors.
- Fix regression query that was using DISTINCT on aggregations giving
wrong results.
- Update minimal supported bblfsh version on documentation.
Signed-off-by: Antonio Navarro Perez <antnavper@gmail.com>
Copy file name to clipboardExpand all lines: _testdata/regression.yml
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,19 @@
23
23
ID: 'query04'
24
24
Name: 'Top 10 repositories by contributor count (all branches)'
25
25
Statements:
26
-
- SELECT repository_id,contributor_count FROM (SELECT repository_id, COUNT(DISTINCT commit_author_email) AS contributor_count FROM commits GROUP BY repository_id) AS q ORDER BY contributor_count DESC LIMIT 10
0 commit comments