Skip to content

Commit

Permalink
drop unneeded bytes to str convertion (#1126)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Salnikov authored Oct 20, 2023
1 parent c329393 commit cdbdd90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/column/string.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func (col *String) AppendRow(v any) error {
col.col.Append("")
}
case []byte:
col.col.Append(string(v))
col.col.AppendBytes(v)
case nil:
col.col.Append("")
default:
Expand Down

0 comments on commit cdbdd90

Please sign in to comment.