@@ -610,9 +610,14 @@ func set(to, from reflect.Value, deepCopy bool, converters map[converterPair]Typ
610
610
}
611
611
}
612
612
613
+ // try convert directly
613
614
if from .Type ().ConvertibleTo (to .Type ()) {
614
615
to .Set (from .Convert (to .Type ()))
615
- } else if toScanner , ok := to .Addr ().Interface ().(sql.Scanner ); ok {
616
+ return true , nil
617
+ }
618
+
619
+ // try Scanner
620
+ if toScanner , ok := to .Addr ().Interface ().(sql.Scanner ); ok {
616
621
// `from` -> `to`
617
622
// *string -> sql.NullString
618
623
if from .Kind () == reflect .Ptr {
@@ -627,10 +632,13 @@ func set(to, from reflect.Value, deepCopy bool, converters map[converterPair]Typ
627
632
// string -> sql.NullString
628
633
// set `to` by invoking method Scan(`from`)
629
634
err := toScanner .Scan (from .Interface ())
630
- if err ! = nil {
631
- return false , nil
635
+ if err = = nil {
636
+ return true , nil
632
637
}
633
- } else if fromValuer , ok := driverValuer (from ); ok {
638
+ }
639
+
640
+ // try Valuer
641
+ if fromValuer , ok := driverValuer (from ); ok {
634
642
// `from` -> `to`
635
643
// sql.NullString -> string
636
644
v , err := fromValuer .Value ()
@@ -644,16 +652,21 @@ func set(to, from reflect.Value, deepCopy bool, converters map[converterPair]Typ
644
652
rv := reflect .ValueOf (v )
645
653
if rv .Type ().AssignableTo (to .Type ()) {
646
654
to .Set (rv )
647
- } else if to .CanSet () && rv .Type ().ConvertibleTo (to .Type ()) {
655
+ return true , nil
656
+ }
657
+ if to .CanSet () && rv .Type ().ConvertibleTo (to .Type ()) {
648
658
to .Set (rv .Convert (to .Type ()))
659
+ return true , nil
649
660
}
650
- } else if from .Kind () == reflect .Ptr {
651
- return set (to , from .Elem (), deepCopy , converters )
652
- } else {
653
661
return false , nil
654
662
}
655
663
656
- return true , nil
664
+ // from is ptr
665
+ if from .Kind () == reflect .Ptr {
666
+ return set (to , from .Elem (), deepCopy , converters )
667
+ }
668
+
669
+ return false , nil
657
670
}
658
671
659
672
// lookupAndCopyWithConverter looks up the type pair, on success the TypeConverter Fn func is called to copy src to dst field.
0 commit comments