From 6c691c59f9e99a30547ba2c9213d8001ef1972f0 Mon Sep 17 00:00:00 2001 From: umanwizard Date: Wed, 30 Oct 2024 09:58:05 -0400 Subject: [PATCH] Update reporter/arrow.go remove stray debugging code --- reporter/arrow.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/reporter/arrow.go b/reporter/arrow.go index 490ad66e93..8a9a1bd1ae 100644 --- a/reporter/arrow.go +++ b/reporter/arrow.go @@ -36,14 +36,6 @@ func (b *BinaryDictionaryRunEndBuilder) NewArray() arrow.Array { return b.ree.NewArray() } -func (b *BinaryDictionaryRunEndBuilder) Value(n int) []byte { - if b.idx.Len() > 0 && - !b.idx.IsNull(b.idx.Len()-1) { - return b.bd.Value(int(b.idx.Value(b.idx.Len() - 1))) - } - return nil -} - func (b *BinaryDictionaryRunEndBuilder) Append(v []byte) { if b.idx.Len() > 0 && !b.idx.IsNull(b.idx.Len()-1) &&