diff --git a/scope_private.go b/scope_private.go index 2b6c3332..153392c5 100644 --- a/scope_private.go +++ b/scope_private.go @@ -226,8 +226,6 @@ func (scope *Scope) whereSql() (sql string) { return } -var hasCountRegexp = regexp.MustCompile(`(?i)count\(.+\)`) - func (scope *Scope) selectSql() string { if len(scope.Search.selects) == 0 { if scope.Search.joins != "" { @@ -235,9 +233,7 @@ func (scope *Scope) selectSql() string { } return "*" } - sql := scope.buildSelectQuery(scope.Search.selects) - scope.Search.countingQuery = (len(scope.Search.group) == 0) && hasCountRegexp.MatchString(sql) - return sql + return scope.buildSelectQuery(scope.Search.selects) } func (scope *Scope) orderSql() string { @@ -422,6 +418,7 @@ func (scope *Scope) pluck(column string, value interface{}) *Scope { func (scope *Scope) count(value interface{}) *Scope { scope.Search.Select("count(*)") + scope.Search.countingQuery = true scope.Err(scope.row().Scan(value)) return scope }