Muennighoff
commited on
Commit
•
deed531
1
Parent(s):
bcd373e
Update query.sql
Browse files
query.sql
CHANGED
@@ -27,4 +27,10 @@ WHERE
|
|
27 |
OR (license_table.license LIKE 'apache-2.0')
|
28 |
OR (license_table.license LIKE 'unlicense')
|
29 |
OR (license_table.license LIKE 'bsd-3-clause')
|
30 |
-
OR (license_table.license LIKE 'bsd-2-clause'))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
OR (license_table.license LIKE 'apache-2.0')
|
28 |
OR (license_table.license LIKE 'unlicense')
|
29 |
OR (license_table.license LIKE 'bsd-3-clause')
|
30 |
+
OR (license_table.license LIKE 'bsd-2-clause'))
|
31 |
+
AND
|
32 |
+
( (LENGTH(commits_table.message) > 10) )
|
33 |
+
AND
|
34 |
+
( (LENGTH(commits_table.message) < 10000) )
|
35 |
+
AND commits_table.message NOT IN ('update readme.md', 'initial commit', 'update', 'Mirroring from micro.blog.', 'update data.json', 'update data.js', 'add files via upload', 'update readme', "Can't you see I'm updating the time?", 'pi push', 'dummy', 'update index.html', 'first commit', 'create readme.md', 'heartbeat update', 'updated readme', 'update log', 'test', 'no message', 'readme', 'wip', 'updates', 'commit', 'update _config.yaml')
|
36 |
+
AND commits_table.message not like 'Merge%';
|