You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It receives a []uint8 with the value [52 50] instead, which is actually the string "42".
If I use the standard library's Scan function, Foo.Scan receives an int64.
I've created a custom type that implements sql.Scanner.
The documentation of this interface claims that Scan will receive one of the following types:
It receives a
[]uint8
with the value[52 50]
instead, which is actually the string"42"
.If I use the standard library's Scan function, Foo.Scan receives an int64.
The text was updated successfully, but these errors were encountered: