Skip to content

Commit

Permalink
//nolint:unused
Browse files Browse the repository at this point in the history
  • Loading branch information
candiduslynx committed Jun 29, 2023
1 parent e295a4f commit 4fa4143
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions plugin/nulls.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import (
"github.com/apache/arrow/go/v13/arrow/memory"
)

// TODO: use in v4
//
//nolint:unused

Check warning on line 11 in plugin/nulls.go

View workflow job for this annotation

GitHub Actions / Lint with GolangCI

comment-spacings: no space between comment delimiter and comment text (revive)
func stripNullsFromLists(records []arrow.Record) {
for i := range records {
cols := records[i].Columns()
Expand Down Expand Up @@ -43,6 +46,9 @@ func stripNullsFromLists(records []arrow.Record) {

type AllowNullFunc func(arrow.DataType) bool

// TODO: use in v4
//
//nolint:unused

Check warning on line 51 in plugin/nulls.go

View workflow job for this annotation

GitHub Actions / Lint with GolangCI

comment-spacings: no space between comment delimiter and comment text (revive)
func (f AllowNullFunc) replaceNullsByEmpty(records []arrow.Record) {
if f == nil {
return
Expand Down

0 comments on commit 4fa4143

Please sign in to comment.