From 82bdf066e9edbeb9e0887ec15121fc4e27e50bc3 Mon Sep 17 00:00:00 2001 From: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com> Date: Sun, 2 May 2021 20:59:50 +0300 Subject: [PATCH] fix compilation error Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com> --- go/sql/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/sql/types.go b/go/sql/types.go index c4be371..c005316 100644 --- a/go/sql/types.go +++ b/go/sql/types.go @@ -191,7 +191,7 @@ func (this *ColumnList) IsEnumToTextConversion(columnName string) bool { func (this *ColumnList) SetEnumValues(columnName string, enumValues string) { this.GetColumn(columnName).EnumValues = enumValues - +} func (this *ColumnList) String() string { return strings.Join(this.Names(), ",")