Merge pull request #2689 from alrs/doltcore-merge-err

libraries/doltcore/merge: fix dropped error
This commit is contained in:
Tim Sehn
2022-01-28 15:10:42 -08:00
committed by GitHub

View File

@@ -212,6 +212,9 @@ func parentFkConstraintViolations(
}
return false, nil
}()
if err != nil {
return nil, false, err
}
if shouldContinue {
continue
}