Skip to content

Commit

Permalink
Preserve []uint8 in dicts instead of converting to a string (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
scudette authored May 7, 2024
1 parent c9f964f commit 520bec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/dict/dict.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func normalize_value(ctx context.Context,
return value

case []byte:
return string(t)
return t

// Reduce any LazyExpr to materialized types
case types.LazyExpr:
Expand Down

0 comments on commit 520bec2

Please sign in to comment.