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

xincheng 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 feb302335b 修复工作流导入时update_time时间一样,导致分页查询存在乱序问题 (#14810)
feb302335b is described below

commit feb302335bc0c0519f19cf6dc730c965a1f06d35
Author: tangjiaolong <[email protected]>
AuthorDate: Thu Jan 25 17:36:12 2024 +0800

    修复工作流导入时update_time时间一样,导致分页查询存在乱序问题 (#14810)
    
    Co-authored-by: David Zollo <[email protected]>
    Co-authored-by: Rick Cheng <[email protected]>
---
 .../org/apache/dolphinscheduler/dao/mapper/ProcessDefinitionMapper.xml  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProcessDefinitionMapper.xml
 
b/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProcessDefinitionMapper.xml
index f8c3375b80..77775b7668 100644
--- 
a/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProcessDefinitionMapper.xml
+++ 
b/dolphinscheduler-dao/src/main/resources/org/apache/dolphinscheduler/dao/mapper/ProcessDefinitionMapper.xml
@@ -79,7 +79,7 @@
                 name like concat('%', #{searchVal}, '%') OR description like 
concat('%', #{searchVal}, '%')
                 )
         </if>
-        order by update_time desc
+        order by update_time desc, id asc
     </select>
     <select id="filterProcessDefinition"
             
parameterType="org.apache.dolphinscheduler.dao.entity.ProcessDefinition"

Reply via email to