From a2e22140ca2c5c706b267c250f09854d9bec476e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= Date: Wed, 6 Mar 2024 20:00:05 +0000 Subject: [PATCH] remove all whitespace --- flow/model/qvalue/qvalue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flow/model/qvalue/qvalue.go b/flow/model/qvalue/qvalue.go index 2c0850820c..013e0ca9e1 100644 --- a/flow/model/qvalue/qvalue.go +++ b/flow/model/qvalue/qvalue.go @@ -279,7 +279,7 @@ func compareHstore(value1, value2 interface{}) bool { if err != nil { panic(err) } - return parsedHStore1 == strings.ReplaceAll(str2, ": ", ":") + return parsedHStore1 == strings.ReplaceAll(strings.ReplaceAll(str2, " ", ""), "\n", "") default: panic(fmt.Sprintf("invalid hstore value type %T: %v", value1, value1)) }