Skip to content

Commit

Permalink
Update ColumnBuilder.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignalina committed Sep 13, 2022
1 parent 9f4cd74 commit bc2812b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion impl/ColumnBuilder.go
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ func FindLastNL_NO_CR(bytes []byte) int {

for p2 > 0 {
if p2 < len(bytes) && bytes[p2] == 0x0a {
return p2
return p2 + 1
}
p2--
}
Expand Down

0 comments on commit bc2812b

Please sign in to comment.