We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af8ac87 commit 08e18e2Copy full SHA for 08e18e2
plugin/nulls.go
@@ -93,10 +93,11 @@ func (s *WriterTestSuite) replaceNullsByEmptyNestedArray(arr arrow.Array) arrow.
93
94
func (s *WriterTestSuite) handleNulls(record arrow.Record) arrow.Record {
95
cols := record.Columns()
96
+ newCols := make([]arrow.Array, len(cols))
97
for c, col := range cols {
- cols[c] = s.handleNullsArray(col)
98
+ newCols[c] = s.handleNullsArray(col)
99
}
- return array.NewRecord(record.Schema(), cols, record.NumRows())
100
+ return array.NewRecord(record.Schema(), newCols, record.NumRows())
101
102
103
func (s *WriterTestSuite) handleNullsArray(arr arrow.Array) arrow.Array {
0 commit comments