mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-16 01:13:17 -06:00
ignore persisted nulls in tuples for diff summary
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user