Skip to content

Commit

Permalink
ForeignKeyDependencyUnresolvedError does not need to indicate 'loop' …
Browse files Browse the repository at this point in the history
…possibility as this is already covered by ForeignKeyLoopError

Signed-off-by: Shlomi Noach <[email protected]>
  • Loading branch information
shlomi-noach committed Jan 28, 2024
1 parent 66ee6ab commit bc019eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/vt/schemadiff/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ type ForeignKeyDependencyUnresolvedError struct {
}

func (e *ForeignKeyDependencyUnresolvedError) Error() string {
return fmt.Sprintf("table %s has unresolved/loop foreign key dependencies",
return fmt.Sprintf("table %s has unresolved foreign key dependencies",
sqlescape.EscapeID(e.Table))
}

Expand Down

0 comments on commit bc019eb

Please sign in to comment.