Browse Source

fix the issue with throwing the sql exception (#13231)

Fix-minio-version-in-helm-chart
calvin 1 year ago committed by GitHub
parent
commit
915bdf481d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProjectMapper.xml

2
dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProjectMapper.xml

@ -108,7 +108,7 @@
OR p.description LIKE concat('%', #{searchName}, '%')
)
</if>
group by p.id
group by p.id,u.user_name
order by p.id desc
</select>
<select id="queryAuthedProjectListByUserId" resultType="org.apache.dolphinscheduler.dao.entity.Project">

Loading…
Cancel
Save