Skip to content

Commit 6fe3cd7

Browse files
fix: linter
1 parent 563ea8a commit 6fe3cd7

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

arrow/compute/internal/kernels/vector_sort_physical.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,9 @@ func (c *physicalSortFixedSizeBinaryColumn) compareRowsForKey(i, j uint64, key S
863863
return compareBytesOrdered(key.Order, a.Value(li), b.Value(lj))
864864
}
865865

866-
func (c *physicalSortFixedSizeBinaryColumn) isNullAt(row uint64) bool { return c.base.isNullAtGlobal(row) }
866+
func (c *physicalSortFixedSizeBinaryColumn) isNullAt(row uint64) bool {
867+
return c.base.isNullAtGlobal(row)
868+
}
867869
func (c *physicalSortFixedSizeBinaryColumn) hasNullLikeValues() bool { return false }
868870
func (c *physicalSortFixedSizeBinaryColumn) isNullLikeAt(uint64) bool { return false }
869871
func (c *physicalSortFixedSizeBinaryColumn) columnHasValidityNulls() bool {

0 commit comments

Comments
 (0)