diff --git a/helpers.go b/helpers.go index 185cbb1d..8984c177 100644 --- a/helpers.go +++ b/helpers.go @@ -469,7 +469,7 @@ func row2mapInterface(rows *core.Rows, fields []string) (resultsMap map[string]i continue } - result[key] = rawValue.Interface() + result[key] = (*rawValue).Interface() } return result, nil }