MetricsGrimoire / Bicho

Bicho is a command line based tool used to parse bug/issue tracking systems
http://metricsgrimoire.github.com/Bicho/
GNU General Public License v2.0
68 stars 30 forks source link

Jira - Not collect multiple "Fix Version/s" #138

Closed douglasjunior closed 9 years ago

douglasjunior commented 9 years ago

In "issue_ext_jira" table has the "version" column. This column would be the version in which the Issue has been fixed.

When there is an issue involving two versions, only the bigger version appears in the column.

For example this Issue https://issues.apache.org/jira/browse/HADOOP-6150

The database only has version 0.21.0

fixed versions

sduenas commented 9 years ago

Column "version" stores those values from Affects Version/s, though you're right, we're not storing the multiple values that come with the issue information. I'm gonna fix the problem with Affects Version/s and then, add support to store Fix Version/s values.

douglasjunior commented 9 years ago

Hello @sduenas , thank you for the answer. Affected versions already solve my problem. Thank you :)

sduenas commented 9 years ago

Fix version/s field added. Due to this change affect to database schema I recommend to delete old databases and retrieve again all info. Otherwise, you'll have to run the next SQL statement to avoid crashes: ALTER TABLE issues_ext_jira ADD COLUMN fix_version VARCHAR(32) NOT NULL;

douglasjunior commented 9 years ago

Ok, no problem. Thank you very much.