- Status New
- Percent Complete
- Task Type Bug Report
- Category Backend/Core
- Assigned To No-one
- Operating System All
- Severity Low
- Priority Low
- Reported Version 1.0 devel (github master)
- Due in Version Undecided
-
Due Date
Undecided
- Votes
- Private
FS#2104 - filtering by one user on tasks with multiple assignees shows only this user
If you have a tasklist with tasks that have multiple assignees in a task and you search just by one of the assignees, the resulting tasklist shows only this user in the assignees column.
Expected: all assignees of the tasks are shown.
Loading...
Available keyboard shortcuts
- Alt + ⇧ Shift + l Login Dialog / Logout
- Alt + ⇧ Shift + a Add new task
- Alt + ⇧ Shift + m My searches
- Alt + ⇧ Shift + t focus taskid search
Tasklist
- o open selected task
- j move cursor down
- k move cursor up
Task Details
- n Next task
- p Previous task
- Alt + ⇧ Shift + e ↵ Enter Edit this task
- Alt + ⇧ Shift + w watch task
- Alt + ⇧ Shift + y Close Task
Task Editing
- Alt + ⇧ Shift + s save task
This requires a bit rewriting of the SQL query in the get_task_list() function of class.backend.php for that case.
A solution is using a subquery with 2 GROUP BY for instance for MySQL:
But there are also other solutions possible like using IN() or doing 2 separate queries.
The different solutions should be tested with test data (100k tasks) if there are performance penalties and tested with Postgresql and MySQL/MariaDB (MyISAM,Innodb) and query plan analysis.
A similiar problem appears to the tag feature since tags are also used for filtering by the text search.
(since Flyspray 1.0-rc10)