From 95c5fc55216870b86fc3ea97e4ca79afe0f7cfd8 Mon Sep 17 00:00:00 2001 From: Nathan <148575555+nathan-artie@users.noreply.github.com> Date: Fri, 21 Jun 2024 19:15:24 -0700 Subject: [PATCH] Update storagewrite.go Signed-off-by: Nathan <148575555+nathan-artie@users.noreply.github.com> --- clients/bigquery/storagewrite.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/bigquery/storagewrite.go b/clients/bigquery/storagewrite.go index 4104d9f96..8e7893cdd 100644 --- a/clients/bigquery/storagewrite.go +++ b/clients/bigquery/storagewrite.go @@ -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)))