We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30ed3ff commit d98c5ecCopy full SHA for d98c5ec
_testdata/regression.yml
@@ -7,12 +7,12 @@
7
ID: 'query1'
8
Name: 'Last commit messages in HEAD for every repository'
9
Statements:
10
- - SELECT c.commit_message FROM refs rJOIN commits c ON r.commit_hash = c.commit_hashWHEREr.ref_name = 'HEAD'
+ - SELECT c.commit_message FROM refs r JOIN commits c ON r.commit_hash = c.commit_hash WHERE r.ref_name = 'HEAD'
11
-
12
ID: 'query2'
13
Name: 'All commit messages in HEAD history for every repository'
14
15
- - SELECT c.commit_message FROM commits cNATURAL JOIN ref_commits rWHERE r.ref_name = 'HEAD'
+ - SELECT c.commit_message FROM commits c NATURAL JOIN ref_commits r WHERE r.ref_name = 'HEAD'
16
17
ID: 'query3'
18
Name: 'Top 10 repositories by commit count in HEAD'
0 commit comments