修复工作流导入时update_time时间一样,导致分页查询存在乱序问题 (#14810)

Co-authored-by: David Zollo <dailidong66@gmail.com>
Co-authored-by: Rick Cheng <rickchengx@gmail.com>
This commit is contained in:
tangjiaolong 2024-01-25 17:36:12 +08:00 committed by GitHub
parent d80a29c48c
commit feb302335b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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"