Skip to content

Commit

Permalink
Fix issue microsoft#102
Browse files Browse the repository at this point in the history
  • Loading branch information
sebbrochet authored Jun 21, 2022
1 parent c557478 commit fe2eefe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/DeltaKustoLib/KustoModel/MappingModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public override bool Equals(object? obj)
var other = obj as MappingElement;
var result = other != null
&& other.Column.Equals(Column)
&& other.DataType.Equals(DataType)
&& other.DataType != null && other.DataType.Equals(DataType)
&& other.Properties.Equals(Properties);

return result;
Expand Down

0 comments on commit fe2eefe

Please sign in to comment.