From 81ef9e3f4e86c663efda5e47309ef18fb11bef70 Mon Sep 17 00:00:00 2001 From: Kaushik Iska Date: Wed, 7 Feb 2024 12:49:04 -0800 Subject: [PATCH] 1 more fix --- flow/model/qvalue/avro_converter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flow/model/qvalue/avro_converter.go b/flow/model/qvalue/avro_converter.go index 70d9e12b85..0b378c3f14 100644 --- a/flow/model/qvalue/avro_converter.go +++ b/flow/model/qvalue/avro_converter.go @@ -449,7 +449,7 @@ func (c *QValueAvroConverter) processNullableUnion( } func (c *QValueAvroConverter) processNumeric() (interface{}, error) { - if c.Value.Value == nil && c.Nullable { + if c.Value.Value == nil { return nil, nil }