-
Bug
-
Resolution: Unresolved
-
Low
-
None
-
3
-
Severity 3 - Minor
-
Issue Summary
In JQL Query, the user can use some Order BY separated by ",".
But if "parent" is added as "order by parent", key is sorted "DESC" and 2nd and after orders do not work as expected.
Steps to Reproduce
- Create Company-managed project
- add Parent issue types(example "Initiative and Epic", "Epic and Story", "Task and Subtask")
- create issues, add "Parent" in some issues.
- Open JQL and add "order by parent" as below.
JQL example
project = "Project name" and issuetype in (Initiative, epic) order by parent,key ASC
"key" should be sorted "ASC", but key is sorted "DESC". And without "ASC", it sorted "DESC" too.
not only "key", "summary" and other field not work if "parent" is included in order.
Expected Results
- order by summary and key, it works well.
Actual Results
multiple orders do not work well, if "order by" includes parent.
- 2nd order by "key", is not sorted as written.
- If without "key", it shows the same results as upper image.
Workaround
Currently there is no known workaround for this behavior. A workaround will be added here when available