Skip to content

Commit

Permalink
Change
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-artie committed Jun 22, 2024
1 parent 95c5fc5 commit 7ffe6bd
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 for an Integer column")
slog.Warn("Received an int 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 7ffe6bd

Please sign in to comment.