From 5baba4c28b7da5e7a5f452a0079f9ede1cbab427 Mon Sep 17 00:00:00 2001 From: Edison-Hsu Date: Thu, 28 Jul 2016 14:19:38 +0800 Subject: [PATCH] fix rawValue.Interface to (*rawValue).Interface() --- helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }