fix rawValue.Interface to (*rawValue).Interface()

This commit is contained in:
Edison-Hsu 2016-07-28 14:19:38 +08:00
parent 4b8086c979
commit 5baba4c28b
1 changed files with 1 additions and 1 deletions

View File

@ -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
}