-
Bug
-
Resolution: Unresolved
-
Low
-
None
-
8.5.4, 8.13.1
-
None
-
8.05
-
2
-
Severity 3 - Minor
-
0
-
Issue Summary
When trying to search a project by the project name (not project key) the results return issues from another project. This happens when you have two projects with overlapping names. The projects overlap at the Project name and Project Key. Project Key does return the results of the project but when using project name it returns results on the project key from the other project.
Steps to Reproduce
- Create a project Project Name = ABC and Project Key = ABCD
- Create another project Project Name = TeamABC and Project Key = ABC
You can see that the project key and project name "ABC" are overlapping. - Make a search:
Project = ABC
Expected Results
You would expect your see your project issues from Project ABC.
Actual Results
You only see issues from Project Team ABC because JQL is searching with the project key. The results only show issues from the other project with project key ABC.
Workaround
The workaround is to search for issues using project key, not project name. If this is behavior is happening, it may that you have two or more projects with overlapping naming in the project key and name.
Run the following SQL query to see if you have overlapping naming. This fix would be to change the project name of one of the projects. You can not change the project key names.
SELECT project_key.id, project.pname, project_key.project_key FROM project LEFT JOIN project_key ON project.id=project_key.project_id ORDER BY project.pname;