You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ke...@apache.org on 2022/12/20 09:54:58 UTC

[dolphinscheduler] branch dev updated: fix the issue with throwing the sql exception (#13231)

This is an automated email from the ASF dual-hosted git repository.

kerwin pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 915bdf481d fix the issue with throwing the sql exception (#13231)
915bdf481d is described below

commit 915bdf481d23b50c87cb43ab8a85c5dcee1d43ab
Author: calvin <ji...@163.com>
AuthorDate: Tue Dec 20 17:54:47 2022 +0800

    fix the issue with throwing the sql exception (#13231)
---
 .../resources/org/apache/dolphinscheduler/dao/mapper/ProjectMapper.xml  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProjectMapper.xml b/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProjectMapper.xml
index 3495bab8a9..c852ffa284 100644
--- a/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProjectMapper.xml
+++ b/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">