forked from mirror/gorm
feat: count accpet `db`.`table` (#4626)
* feat: count accpet `db`.`table` * fix: logic fix
This commit is contained in:
parent
25f561a742
commit
1bb0d8732d
|
@ -390,7 +390,7 @@ func (db *DB) Count(count *int64) (tx *DB) {
|
|||
if len(tx.Statement.Selects) == 1 {
|
||||
dbName := tx.Statement.Selects[0]
|
||||
fields := strings.FieldsFunc(dbName, utils.IsValidDBNameChar)
|
||||
if len(fields) == 1 || (len(fields) == 3 && strings.ToUpper(fields[1]) == "AS") {
|
||||
if len(fields) == 1 || (len(fields) == 3 && (strings.ToUpper(fields[1]) == "AS" || fields[1] == ".")) {
|
||||
if tx.Statement.Parse(tx.Statement.Model) == nil {
|
||||
if f := tx.Statement.Schema.LookUpField(dbName); f != nil {
|
||||
dbName = f.DBName
|
||||
|
|
Loading…
Reference in New Issue