Skip to content

Commit

Permalink
fix: 测试计划关联性能测试后无法显示关联用例
Browse files Browse the repository at this point in the history
  • Loading branch information
AgAngle committed Jul 21, 2021
1 parent 34811a9 commit d061c07
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down

0 comments on commit d061c07

Please sign in to comment.