Skip to content

Commit

Permalink
remove all whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
serprex committed Mar 6, 2024
1 parent bc42f89 commit a2e2214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flow/model/qvalue/qvalue.go
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}
Expand Down

0 comments on commit a2e2214

Please sign in to comment.