49
50
// ParseValue returns a string, int64 or float64 if the parsing succeeds.
52
>
if sqlValue == "" {
53
return "", nil
54
}
55
58
>
return strValue, nil
59
>
}
60
61
// Unquoted value must be a number. Try int64 first.