首页调度报表的日期排序在TIDB下乱序问题修复

This commit is contained in:
xuxueli 2019-05-27 21:17:49 +08:00
parent ab6becaea0
commit c8f2a71a25
2 changed files with 3 additions and 1 deletions

View File

@ -1463,6 +1463,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
- 10、任务列表支持根据状态筛选
- 11、项目依赖升级至较新稳定版本如spring、springboot、groovy、xxl-rpc等等并清理冗余POM
- 12、升级xxl-rpc至较新版本修复代理服务初始化时远程服务不可用导致长连冗余创建的问题;
- 13、首页调度报表的日期排序在TIDB下乱序问题修复
### TODO LIST

View File

@ -182,7 +182,8 @@
SUM(CASE WHEN handle_code = 200 then 1 else 0 end) as triggerDayCountSuc
FROM xxl_job_log
WHERE trigger_time BETWEEN #{from} and #{to}
GROUP BY triggerDay;
GROUP BY triggerDay
ORDER BY triggerDay
</select>
<delete id="clearLog" >