From cfbf0fd66c26526458df1158712796ccd065f773 Mon Sep 17 00:00:00 2001 From: Dmitry Kropachev Date: Thu, 8 Jun 2023 19:49:42 -0400 Subject: [PATCH] fix(coltypes): align imports --- pkg/coltypes/bag.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/coltypes/bag.go b/pkg/coltypes/bag.go index 63598e34..4fbba19e 100644 --- a/pkg/coltypes/bag.go +++ b/pkg/coltypes/bag.go @@ -69,7 +69,6 @@ func (ct *BagType) CQLPretty(query string, value []interface{}) (string, int) { op, cl := "[", "]" if ct.Kind == "set" { op, cl = "{", "}" - } vv := op vv += strings.Repeat("?,", s.Len())