Browse Source

排序字段已调整为按照调度时间倒序,兼容TIDB等主键不连续日志存储组件。

xuxueli 6 years ago
parent
commit
aca0ca64b6

+ 1 - 1
xxl-job-admin/src/main/resources/mybatis-mapper/XxlJobLogMapper.xml View File

@@ -74,7 +74,7 @@
74 74
 				AND t.handle_code = 0
75 75
 			</if>
76 76
 		</trim>
77
-		ORDER BY id DESC
77
+		ORDER BY t.trigger_time DESC
78 78
 		LIMIT #{offset}, #{pagesize}
79 79
 	</select>
80 80