fix(性能测试): 修复因用户删除导致的页面报错问题

【[性能测试] github#31040人员a 做性能测试,产生的性能测试报告,管理员把人员a 删除,同一个项目下查看报告,提示报告不存在】
https://www.tapd.cn/55049933/bugtrace/bugs/view/1155049933001041106
This commit is contained in:
Jianguo-Genius 2024-09-09 15:50:08 +08:00 committed by 建国
parent 73054347d3
commit f201dbfe91
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@
from load_test_report ltr
left join load_test lt on ltr.test_id = lt.id
join project p on ltr.project_id = p.id
JOIN user on ltr.user_id = user.id
left JOIN user on ltr.user_id = user.id
where ltr.id = #{id}
</select>