-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
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
sql/tests: TestRandomSyntaxGeneration failed [DROP OWNED BY timeout] #87572
Comments
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 1adc3f0b396dc045c52729d249943889a495c652: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 1bfe9bcda653f55ed3b4216610433b51b2ef0d8f: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 9b62adaceb821a96d325a8ce30f35952ec48e9e5: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 9b62adaceb821a96d325a8ce30f35952ec48e9e5: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 58d24a3e81a743a9a77bd4e8bf0bd27180eb3c04: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ ba1686e00bb140b67ba9ecc154d949795c2555b6: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 21e14668fc212614785cb3739378378a0aac4539: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ a7b39a0d0155e2571412e0279848bb0f15486c4c: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ aac413cd4ca62f3392029b42219ebb2788979fb8: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ aac413cd4ca62f3392029b42219ebb2788979fb8: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ aac413cd4ca62f3392029b42219ebb2788979fb8: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ edeefa9120e86739808ca43fc52d4cbac813fab3: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ ac55929f9367f7dee41118f95d07a17b667b4d50: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ a33d71dcd904c771d1297323d8d206b8b59d40bf: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ c037b5e5ce491a4a2b6e33401b00a05c2b117c73: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 8eb9026a0ccbf3411341de62438a678fda1b64cd:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 8eb9026a0ccbf3411341de62438a678fda1b64cd: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 492c3c88c3d3ce46ccf835dbf4e85f33293b8ab4: Random syntax error:
Query:
Same failure on other branches
|
tagging @cockroachdb/sql-schema since DROP OWNED BY is new and seems to be timing out. |
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 1f718803f084451c1b061db5a69bfc62feb1c457: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ ea0e966fe05a788fd123a08cec8ef5e935fa5496:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 6d4dd6df63c2c9d516153404fd15d62d4e3c9908:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ afab335620e28c5d8c849ba09e50ec12c2836b3f:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 07a53a36601e9ca5fcffcff55f69b43c6dfbf1c1:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 07a53a36601e9ca5fcffcff55f69b43c6dfbf1c1:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 07a53a36601e9ca5fcffcff55f69b43c6dfbf1c1:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 07a53a36601e9ca5fcffcff55f69b43c6dfbf1c1:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 07a53a36601e9ca5fcffcff55f69b43c6dfbf1c1:
Same failure on other branches
|
Fixes: #89831, #87572 Previously, it was possible for the declarative schema changer drop type operations and other legacy schema changer operations for types to overlap. This was problematic because if any legacy type descriptor-related schema change job saw that a type descriptor is labelled as dropped, we would delete the descriptor as a part the legacy schema changer job. This would happen for example if we had a DROP TYPE and ALTER TYPE operations running concurrently, with the former in the declarative schema changer. The declarative schema changer during the commit phase will mark the descriptor as dropped, and delete the descriptor using a job. The alter type legacy schema changer job if started afterwards will drop the type descriptor if it's marked as dropped before the declarative schema change job starts, causing the declarative to hang later on if the descriptor is missing. To address this, this patch will prevent the legacy schema changer jobs from dropping a type descriptor, if a declarative schema changer exists inside it. Release note: None
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ ab9f14774b18845d0fd0867aa8e35a60b2acc91c:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 00ed5143845ec05797d16e6ab61d179cf51775f2:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ cce52c9eab1210c6cd508f6b99b2bad0ba3e1e56:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ cce52c9eab1210c6cd508f6b99b2bad0ba3e1e56:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ cce52c9eab1210c6cd508f6b99b2bad0ba3e1e56:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 81a114c2bc2ef8ef76fe3809d0469319c7e82635:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ f15ad13ff5b197f881f333085a2fda170857b50b: Random syntax error:
Query:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 7fc4a3869a31c88c75888a470b4078f0a6aaa4e0:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 70abf3f409be04bb8b1f1a1644f5ba49f433af6a:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 767f5e74314e972d4eb5c7e34f1ecc25851bb790:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 82181a854ce0293d8b67d0de2b4734544c074990:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 7fc4a3869a31c88c75888a470b4078f0a6aaa4e0:
Same failure on other branches
|
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ 95b59e058c3dc01888204f46b6ff5a10962481e5:
Same failure on other branches
|
Inform: #87572 Previously, the experimental scrub command could panic if a database contains a type descriptor. This patch will modify the scrub to handle nil descriptors and not panic on type descriptors. Release note (bug fix): The experimental scrub command did not handle type descriptors in database.
sql/tests.TestRandomSyntaxGeneration failed with artifacts on release-22.2 @ f8e04f32b84a9727c9e813d0096bde2de64d5675:
Random syntax error:
Query:
Help
See also: How To Investigate a Go Test Failure (internal)
Same failure on other branches
This test on roachdash | Improve this report!
Jira issue: CRDB-19416
The text was updated successfully, but these errors were encountered: