Skip to content

Commit

Permalink
Update storagewrite.go
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan <[email protected]>
  • Loading branch information
nathan-artie authored Jun 22, 2024
1 parent 51b0d89 commit 95c5fc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/bigquery/storagewrite.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func rowToMessage(row map[string]any, columns []columns.Column, messageDescripto
switch value := value.(type) {
case int:
// TODO: Remove int case if we don't see the following the the logs
slog.Warn("Received an int instead if an int32/64 for a Integer column")
slog.Warn("Received an int instead for an Integer column")
message.Set(field, protoreflect.ValueOfInt64(int64(value)))
case int32:
message.Set(field, protoreflect.ValueOfInt64(int64(value)))
Expand Down

0 comments on commit 95c5fc5

Please sign in to comment.