ignore persisted nulls in tuples for diff summary

This commit is contained in:
Andy Arthur
2020-10-13 14:05:56 -07:00
parent 9c8c1dd624
commit e9b056c173

View File

@@ -578,7 +578,9 @@ func (t Tuple) fieldsToMap() (map[Value]Value, error) {
if err != nil {
return true, err
}
valMap[val] = value
if value.Kind() != NullKind {
valMap[val] = value
}
}
return false, nil