From 117fffe8ed6b805f55ef35998fcd699fb6f7546b Mon Sep 17 00:00:00 2001 From: Vladimir Mihailenco Date: Fri, 4 Nov 2022 10:08:24 +0200 Subject: [PATCH] chore: silence logs --- ch/chschema/table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch/chschema/table.go b/ch/chschema/table.go index 75ffdd7..d8eea16 100644 --- a/ch/chschema/table.go +++ b/ch/chschema/table.go @@ -259,7 +259,7 @@ func (t *Table) NewColumn(colName, colType string, numRow int) *Column { } if colType != field.CHType { - if field.CHType != chtype.Any { + if field.CHType != chtype.Any && false { internal.Logger.Printf("got column type %q, but %s.%s has type %q", colType, t.Type.Name(), field.GoName, field.CHType) }