Skip to content

Commit

Permalink
0003612: Failed to update a table_reload_request during initial load
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Jun 26, 2018
1 parent 1194113 commit 947474f
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ public void insertTableReloadRequest(TableReloadRequest request) {
if (request.getCreateTime() == null) {
request.setCreateTime(time);
}
request.setCreateTime(new Date((request.getCreateTime().getTime() / 1000) * 1000));

sqlTemplate.update(
getSql("insertTableReloadRequest"),
new Object[] { request.getReloadSelect(), request.getBeforeCustomSql(),
Expand Down

0 comments on commit 947474f

Please sign in to comment.