mirror of https://github.com/go-gorm/gorm.git
Futher clarified error messaging for invalid `plucks'.
This commit is contained in:
parent
7d16055a5d
commit
8389d92f78
|
@ -3,7 +3,6 @@ package gorm
|
|||
import (
|
||||
"database/sql"
|
||||
"database/sql/driver"
|
||||
"errors"
|
||||
"fmt"
|
||||
"reflect"
|
||||
"regexp"
|
||||
|
@ -360,7 +359,7 @@ func (scope *Scope) pluck(column string, value interface{}) *Scope {
|
|||
dest := reflect.Indirect(reflect.ValueOf(value))
|
||||
scope.Search.Select(column)
|
||||
if dest.Kind() != reflect.Slice {
|
||||
scope.Err(errors.New("results should be a slice"))
|
||||
scope.Err(fmt.Errorf("results should be a slice, not %s", dest.Kind()))
|
||||
return scope
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue