We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a740330 commit 3b140f9Copy full SHA for 3b140f9
sql/sanity-check.sql
@@ -3,4 +3,21 @@ from authors a
3
right outer join history h
4
on a.author_id = h.author_id
5
or a.author_id = h.committer_id
6
-where h.commit_id = null;
+where h.commit_id = null;
7
+
8
+select * from versions order by release_date desc limit 1;
9
10
+select version_name, count(file_id) as number_of_files
11
+from full_files
12
+where version_main = 3
13
+group by version_name, release_date
14
+order by release_date;
15
16
+select version_name, count(function_id) as number_of_functions
17
+from functions, full_files
18
19
+and functions.file_id = full_files.file_id
20
21
22
23
0 commit comments