2
0

Remove unused scan float into numeric

This commit is contained in:
Jack Christensen
2019-04-13 18:06:09 -05:00
parent affd192c6c
commit 57b149e8e9
-4
View File
@@ -568,10 +568,6 @@ func (dst *Numeric) Scan(src interface{}) error {
}
switch src := src.(type) {
case float64:
// TODO
// *dst = Numeric{Float: src, Status: Present}
return nil
case string:
return dst.DecodeText(nil, []byte(src))
case []byte: