Skip to content

Commit

Permalink
Update reporter/arrow.go
Browse files Browse the repository at this point in the history
remove stray debugging code
  • Loading branch information
umanwizard authored Oct 30, 2024
1 parent 8da4c37 commit 6c691c5
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions reporter/arrow.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) &&
Expand Down

0 comments on commit 6c691c5

Please sign in to comment.