narrowizard opened a new issue, #1938: URL: https://github.com/apache/incubator-devlake/issues/1938
## Describe the bug Some data marked as `is_removed` in `sprint_issues` table is actually not removed from the sprint. ## Expected behavior Data in `sprint_issues` should represent the latest status of `issue in sprint` info. ## Additional context ### changelogs ``` postgres@172:lake> select "from", "to", created_date from changelogs where issue_id = 'jira:JiraIssue:1:18611' and field_name = 'Sprint'; +--------+-------+----------------------------+ | from | to | created_date | |--------+-------+----------------------------| | 冲刺9 | | 2022-04-01 14:09:21.886+08 | | | 冲刺9 | 2022-04-01 14:28:50.108+08 | +--------+-------+----------------------------+ ``` ### sprints ``` postgres@172:lake> select id, name, started_date, completed_date, status from sprints where id = 'jira:JiraSprint:1:144'; +-----------------------+--------+----------------------------+----------------------------+----------+ | id | name | started_date | completed_date | status | |-----------------------+--------+----------------------------+----------------------------+----------| | jira:JiraSprint:1:144 | 冲刺9 | 2022-04-06 13:41:58.762+08 | 2022-04-18 09:31:35.413+08 | CLOSED | +-----------------------+--------+----------------------------+----------------------------+----------+ ``` ### issues ``` postgres@172:lake> select created_date, resolution_date, status from issues where id = 'jira:JiraIssue:1:18611'; +----------------------------+----------------------------+----------+ | created_date | resolution_date | status | |----------------------------+----------------------------+----------| | 2022-04-01 13:53:20.963+08 | 2022-04-15 16:55:13.665+08 | DONE | +----------------------------+----------------------------+----------+ ``` ### sprint_issues ``` postgres@172:lake> select is_removed, added_date, removed_date from sprint_issues where sprint_id = 'jira:JiraSprint:1:144' and issue_id = 'jira:JiraIssue:1:18611'; +--------------+----------------------------+----------------------------+ | is_removed | added_date | removed_date | |--------------+----------------------------+----------------------------| | True | 2022-04-01 13:53:20.963+08 | 2022-04-01 14:09:21.886+08 | +--------------+----------------------------+----------------------------+ ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
