We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b90796f commit 4f45edbCopy full SHA for 4f45edb
src/Nest/CommonAbstractions/Infer/Field/Field.cs
@@ -78,7 +78,7 @@ public override bool Equals(object obj)
78
var other = obj as Field;
79
if (other == null)
80
return false;
81
- return ComparisonValue == other.ComparisonValue;
+ return ComparisonValue.Equals(other.ComparisonValue);
82
}
83
84
string IUrlParameter.GetString(IConnectionConfigurationValues settings)
0 commit comments