forked from mirror/gorm
Merge pull request #672 from ivpusic/master
do not execute buildSelectQuery twice
This commit is contained in:
commit
00fe20f8a8
|
@ -217,7 +217,7 @@ func (scope *Scope) selectSql() string {
|
||||||
}
|
}
|
||||||
sql := scope.buildSelectQuery(scope.Search.selects)
|
sql := scope.buildSelectQuery(scope.Search.selects)
|
||||||
scope.Search.countingQuery = (len(scope.Search.group) == 0) && hasCountRegexp.MatchString(sql)
|
scope.Search.countingQuery = (len(scope.Search.group) == 0) && hasCountRegexp.MatchString(sql)
|
||||||
return scope.buildSelectQuery(scope.Search.selects)
|
return sql
|
||||||
}
|
}
|
||||||
|
|
||||||
func (scope *Scope) orderSql() string {
|
func (scope *Scope) orderSql() string {
|
||||||
|
|
Loading…
Reference in New Issue