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
I found a problem when analyzing the project Tempest. The author with the most commits appears without added and removed lines. But if you see the commits on Github the author does add and remove lines.
Info:
mysql> use openstack_tempest_cvsanaly;
mysql> select * from people where id = 8;
+----+---------+------------------------------+
| id | name | email |
+----+---------+------------------------------+
| 8 | Jenkins | [email protected] |
+----+---------+------------------------------+
mysql> SELECT count() FROM commits_lines WHERE id = ANY (SELECT id FROM scmlog WHERE author_id = 8);
+----------+
| count() |
+----------+
| 771 |
+----------+
mysql> SELECT SUM(added) FROM commits_lines WHERE id = ANY (SELECT id FROM scmlog WHERE author_id = 8);
+------------+
| SUM(added) |
+------------+
| 0 |
+------------+
mysql> SELECT SUM(removed) FROM commits_lines WHERE id = ANY (SELECT id FROM scmlog WHERE author_id = 8);
+--------------+
| SUM(removed) |
+--------------+
| 0 |
+--------------+
Commit on Github by this author:
Merge "Test that Heat max_template_size is applied"
Jenkins authored 5 days ago
Showing 2 changed files with 48 additions and 0 deletions.
URL: openstack/tempest@fcbca58
The text was updated successfully, but these errors were encountered:
I found a problem when analyzing the project Tempest. The author with the most commits appears without added and removed lines. But if you see the commits on Github the author does add and remove lines.
Info:
mysql> use openstack_tempest_cvsanaly;
mysql> select * from people where id = 8;
+----+---------+------------------------------+
| id | name | email |
+----+---------+------------------------------+
| 8 | Jenkins | [email protected] |
+----+---------+------------------------------+
mysql> SELECT count() FROM commits_lines WHERE id = ANY (SELECT id FROM scmlog WHERE author_id = 8);
+----------+
| count() |
+----------+
| 771 |
+----------+
mysql> SELECT SUM(added) FROM commits_lines WHERE id = ANY (SELECT id FROM scmlog WHERE author_id = 8);
+------------+
| SUM(added) |
+------------+
| 0 |
+------------+
mysql> SELECT SUM(removed) FROM commits_lines WHERE id = ANY (SELECT id FROM scmlog WHERE author_id = 8);
+--------------+
| SUM(removed) |
+--------------+
| 0 |
+--------------+
Commit on Github by this author:
Merge "Test that Heat max_template_size is applied"
Jenkins authored 5 days ago
Showing 2 changed files with 48 additions and 0 deletions.
URL: openstack/tempest@fcbca58
The text was updated successfully, but these errors were encountered: