From 05ce1a453af1d4d1d0802cd259e51a9f551336c8 Mon Sep 17 00:00:00 2001 From: Aaron Son Date: Tue, 23 Nov 2021 09:18:43 -0800 Subject: [PATCH] go/libraries/doltcore/table/untyped/xlsx: Fix bug where this spammed internal representation of the imported rows to Stdout. These lines were not visible from the CLI because of color, but it still cost performance. In an embedded context, these could end up in stdout. --- go/libraries/doltcore/table/untyped/xlsx/marshaling.go | 1 - 1 file changed, 1 deletion(-) diff --git a/go/libraries/doltcore/table/untyped/xlsx/marshaling.go b/go/libraries/doltcore/table/untyped/xlsx/marshaling.go index c5fcfaad3e..e787fe7c56 100644 --- a/go/libraries/doltcore/table/untyped/xlsx/marshaling.go +++ b/go/libraries/doltcore/table/untyped/xlsx/marshaling.go @@ -99,7 +99,6 @@ func decodeXLSXRows(ctx context.Context, vrw types.ValueReadWriter, xlData [][][ } rows = append(rows, r) - fmt.Println(rows) } }