|
@@ -362,7 +362,7 @@ func generateRadarSql(beginTime time.Time, endTime time.Time, repoId int64) stri |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
func generateTargetSql(beginTime time.Time, endTime time.Time, repoId int64) string { |
|
|
func generateTargetSql(beginTime time.Time, endTime time.Time, repoId int64) string { |
|
|
sql := "SELECT date, num_visits,num_downloads,num_commits FROM repo_statistic" + |
|
|
|
|
|
|
|
|
sql := "SELECT date, num_visits,num_downloads_added as num_downloads,num_commits_added as num_commits FROM repo_statistic" + |
|
|
" where repo_id=" + strconv.FormatInt(repoId, 10) + " and created_unix >=" + strconv.FormatInt(beginTime.Unix(), 10) + |
|
|
" where repo_id=" + strconv.FormatInt(repoId, 10) + " and created_unix >=" + strconv.FormatInt(beginTime.Unix(), 10) + |
|
|
" and created_unix<" + strconv.FormatInt(endTime.Unix(), 10) + " order by created_unix desc" |
|
|
" and created_unix<" + strconv.FormatInt(endTime.Unix(), 10) + " order by created_unix desc" |
|
|
|
|
|
|
|
|