fix: 测试计划关联性能测试后无法显示关联用例

This commit is contained in:
chenjianxing 2021-07-21 14:06:58 +08:00 committed by jianxing
parent 34811a9613
commit d061c07f02
1 changed files with 2 additions and 2 deletions

View File

@ -53,8 +53,8 @@
p.name as projectName
from test_plan_load_case tplc
inner join load_test lt on tplc.load_case_id = lt.id
inner join user u on lt.user_id = u.id
inner join project p on lt.project_id = p.id
left join user u on lt.user_id = u.id
left join project p on lt.project_id = p.id
<where>
tplc.test_plan_id = #{request.testPlanId}
<if test="request.caseIds != null and request.caseIds.size > 0">