Replace COUNT(DISTINCT primary_key) with COUNT(*)

This commit is contained in:
Deluan 2023-11-25 22:29:05 -05:00
parent b964018cd7
commit 8c8e1ea701
4 changed files with 2 additions and 4 deletions

View file

@ -76,7 +76,6 @@ func artistFilter(field string, value interface{}) Sqlizer {
func (r *albumRepository) CountAll(options ...model.QueryOptions) (int64, error) {
sql := r.newSelectWithAnnotation("album.id")
sql = r.withGenres(sql)
return r.count(sql, options...)
}