Skip to content

Commit

Permalink
libraries/doltcore/merge: fix dropped error
Browse files Browse the repository at this point in the history
  • Loading branch information
alrs committed Jan 26, 2022
1 parent 425646f commit 3296b9e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions go/libraries/doltcore/merge/constraint_violations.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,9 @@ func parentFkConstraintViolations(
}
return false, nil
}()
if err != nil {
return nil, false, err
}
if shouldContinue {
continue
}
Expand Down

0 comments on commit 3296b9e

Please sign in to comment.