remove OrderBy nil variadic argument

This commit is contained in:
Gani Georgiev
2022-09-22 20:35:20 +03:00
parent ccc3707fb6
commit 6c005c4a9a
+1 -1
View File
@@ -199,7 +199,7 @@ func (s *Provider) Exec(items any) (*Result, error) {
// count
var totalCount int64
countQuery := modelsQuery
countQuery.Distinct(false).Select("COUNT(*)").OrderBy(nil...) // unset ORDER BY statements
countQuery.Distinct(false).Select("COUNT(*)").OrderBy() // unset ORDER BY statements
if s.countColumn != "" {
countQuery.Select("COUNT(DISTINCT(" + s.countColumn + "))")
}