Skip to content

Commit

Permalink
add concurrently-init-stats
Browse files Browse the repository at this point in the history
Signed-off-by: Weizhen Wang <wangweizhen@pingcap.com>
  • Loading branch information
hawkingrei committed May 13, 2024
1 parent 5d98c16 commit cb172af
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/executor/analyze.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,10 @@ TASKLOOP:
}
} else {
for globalStatsID := range globalStatsMap {
statsHandle.SaveMetaToStorage(globalStatsID.tableID, 0, 0, handleutil.StatsMetaHistorySourceAnalyze)
err = statsHandle.SaveMetaToStorage(globalStatsID.tableID, 0, 0, handleutil.StatsMetaHistorySourceAnalyze)
if err != nil {
return err
}
}
}
}
Expand Down

0 comments on commit cb172af

Please sign in to comment.