修复工作流导入时update_time时间一样,导致分页查询存在乱序问题 (#14810)
Co-authored-by: David Zollo <dailidong66@gmail.com> Co-authored-by: Rick Cheng <rickchengx@gmail.com>
This commit is contained in:
parent
d80a29c48c
commit
feb302335b
|
|
@ -79,7 +79,7 @@
|
||||||
name like concat('%', #{searchVal}, '%') OR description like concat('%', #{searchVal}, '%')
|
name like concat('%', #{searchVal}, '%') OR description like concat('%', #{searchVal}, '%')
|
||||||
)
|
)
|
||||||
</if>
|
</if>
|
||||||
order by update_time desc
|
order by update_time desc, id asc
|
||||||
</select>
|
</select>
|
||||||
<select id="filterProcessDefinition"
|
<select id="filterProcessDefinition"
|
||||||
parameterType="org.apache.dolphinscheduler.dao.entity.ProcessDefinition"
|
parameterType="org.apache.dolphinscheduler.dao.entity.ProcessDefinition"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue