We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
executor/delete
The foreign test in executor/delete is flaky:
time="2024-10-28T17:52:32+08:00" level=error msg="run test [executor/delete] err: sql:delete parent, parent2 from parent join parent2 on parent.a = parent2.a;: failed to run query \n\"delete parent, parent2 from parent join parent2 on parent.a = parent2.a;\" \n around line 139, \nwe need(256):\ndelete parent, parent2 from parent join parent2 on parent.a = parent2.a;\nError 1451 (23000): Cannot delete or update a parent row: a foreign key constraint fails (`executor__delete`.`child`, CONSTRAINT `fk_1` FOREIGN KEY (`a`) REFERENCES `parent` (`a`))\nde\nbut got(256):\ndelete parent, parent2 from parent join parent2 on parent.a = parent2.a;\nError 1451 (23000): Cannot delete or update a parent row: a foreign key constraint fails (`executor__delete`.`child2`, CONSTRAINT `fk_1` FOREIGN KEY (`a`) REFERENCES `parent2` (`a`))\n\n"
The text was updated successfully, but these errors were encountered:
test: fix the flaky integration test for foreign key. (#56979)
ec65c4f
close #56978
Successfully merging a pull request may close this issue.
The foreign test in
executor/delete
is flaky:The text was updated successfully, but these errors were encountered: