mirror of https://github.com/go-gorm/gorm.git
Only check struct value can address or not
This commit is contained in:
parent
79f427d862
commit
ea1bce3771
10
statement.go
10
statement.go
|
@ -540,11 +540,6 @@ func (stmt *Statement) SetColumn(name string, value interface{}, fromCallbacks .
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !stmt.ReflectValue.CanAddr() {
|
|
||||||
stmt.AddError(ErrInvalidValue)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
switch stmt.ReflectValue.Kind() {
|
switch stmt.ReflectValue.Kind() {
|
||||||
case reflect.Slice, reflect.Array:
|
case reflect.Slice, reflect.Array:
|
||||||
if len(fromCallbacks) > 0 {
|
if len(fromCallbacks) > 0 {
|
||||||
|
@ -555,6 +550,11 @@ func (stmt *Statement) SetColumn(name string, value interface{}, fromCallbacks .
|
||||||
field.Set(stmt.ReflectValue.Index(stmt.CurDestIndex), value)
|
field.Set(stmt.ReflectValue.Index(stmt.CurDestIndex), value)
|
||||||
}
|
}
|
||||||
case reflect.Struct:
|
case reflect.Struct:
|
||||||
|
if !stmt.ReflectValue.CanAddr() {
|
||||||
|
stmt.AddError(ErrInvalidValue)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
field.Set(stmt.ReflectValue, value)
|
field.Set(stmt.ReflectValue, value)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue