mirror of https://github.com/go-gorm/gorm.git
Remove the uncessary reflect.Ptr
This commit is contained in:
parent
ba59065024
commit
81aa949105
2
scan.go
2
scan.go
|
@ -191,7 +191,7 @@ func Scan(rows *sql.Rows, db *DB, initialized bool) {
|
||||||
db.Statement.ReflectValue.Set(reflect.Append(db.Statement.ReflectValue, elem.Elem()))
|
db.Statement.ReflectValue.Set(reflect.Append(db.Statement.ReflectValue, elem.Elem()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
case reflect.Struct, reflect.Ptr:
|
case reflect.Struct:
|
||||||
if db.Statement.ReflectValue.Type() != Schema.ModelType {
|
if db.Statement.ReflectValue.Type() != Schema.ModelType {
|
||||||
Schema, _ = schema.Parse(db.Statement.Dest, db.cacheStore, db.NamingStrategy)
|
Schema, _ = schema.Parse(db.Statement.Dest, db.cacheStore, db.NamingStrategy)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue