From 55fa6f9176fafdb6555d99c569ba8e5068af9b63 Mon Sep 17 00:00:00 2001 From: Edison-Hsu Date: Thu, 28 Jul 2016 14:26:22 +0800 Subject: [PATCH] revert --- helpers.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers.go b/helpers.go index 8984c177..185cbb1d 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 }