From 1826cb43abb24dea05a8763c0c97aedd9bd0495e Mon Sep 17 00:00:00 2001 From: tak Date: Mon, 11 Dec 2023 11:22:23 +0800 Subject: [PATCH] =?UTF-8?q?curl=E7=B1=BB=E5=9E=8B=EF=BC=8C=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E5=BA=93=E6=B5=AE=E7=82=B9=E6=95=B0=E5=88=A4=E6=96=AD?= =?UTF-8?q?=E8=BF=94=E5=9B=9E=EF=BC=8C=E5=88=97=E8=A1=A8=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E6=97=B6=E5=80=99=E7=94=A8=E5=88=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/internal/library/hggen/views/column_map.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/internal/library/hggen/views/column_map.go b/server/internal/library/hggen/views/column_map.go index f5e49b0..43d03da 100644 --- a/server/internal/library/hggen/views/column_map.go +++ b/server/internal/library/hggen/views/column_map.go @@ -219,6 +219,8 @@ func IsNumberType(goType string) bool { switch goType { case GoTypeInt, GoTypeUint, GoTypeInt64, GoTypeUint64: return true + case GoTypeFloat32, GoTypeFloat64: + return true } return false }