From 108dca28102fb008b1328b4d03815f2083252a2f Mon Sep 17 00:00:00 2001 From: Nathan Villaescusa Date: Mon, 8 Apr 2024 14:07:20 -0700 Subject: [PATCH] Format --- lib/debezium/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/debezium/types.go b/lib/debezium/types.go index baf79cec9..eec39f24e 100644 --- a/lib/debezium/types.go +++ b/lib/debezium/types.go @@ -144,7 +144,7 @@ func (f Field) ParseValue(value any) (any, error) { // This value is coming from reader. // -> Pass. default: - // Value should always be a float64 int64, but let's check this if this assumption holds and if so clean up + // Value should always be a float64/int64, but let's check this if this assumption holds and if so clean up // the code below so that we aren't doing float -> string -> float. slog.Error(fmt.Sprintf("Expected float64 received %T with value '%v'", value, value)) }