-
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
roachtest: update regression.diffs #135313
Conversation
Your pull request contains more than 1000 changes. It is strongly encouraged to split big PRs into smaller chunks. 🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should preserve _version_
markers that were added in #131835.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Reviewable status: complete! 0 of 0 LGTMs obtained (waiting on @srosenberg and @vidit-bhat)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
-- check dependency restrictions | ||
ALTER TABLE main_table DROP COLUMN b; | ||
-ERROR: cannot drop column b of table main_table because other objects depend on it | ||
-DETAIL: trigger after_upd_b_row_trig on table main_table depends on column b of table main_table | ||
-trigger after_upd_a_b_row_trig on table main_table depends on column b of table main_table | ||
-trigger after_upd_b_stmt_trig on table main_table depends on column b of table main_table | ||
-HINT: Use DROP ... CASCADE to drop the dependent objects too. | ||
+ERROR: error executing StatementPhase stage 1 of 1 with 8 MutationType ops: relation "main_table" (649): trigger "after_upd_b_row_trig" contains unknown column "b" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we extract this error into a separate issue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. I filed #136918 to track this.
+ERROR: unimplemented: CREATE TRIGGER | ||
+HINT: You have attempted to use a feature that is not yet implemented. | ||
+See: https://go.crdb.dev/issue-v/126359/_version_ | ||
+ERROR: internal error: building declarative schema change targets for CREATE TRIGGER: runtime error: invalid memory address or nil pointer dereference |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this bug has already been addressed in #135667, but we can update the diff on the next failure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: complete! 1 of 0 LGTMs obtained (waiting on @srosenberg, @vidit-bhat, and @yuzefovich)
-- check dependency restrictions | ||
ALTER TABLE main_table DROP COLUMN b; | ||
-ERROR: cannot drop column b of table main_table because other objects depend on it | ||
-DETAIL: trigger after_upd_b_row_trig on table main_table depends on column b of table main_table | ||
-trigger after_upd_a_b_row_trig on table main_table depends on column b of table main_table | ||
-trigger after_upd_b_stmt_trig on table main_table depends on column b of table main_table | ||
-HINT: Use DROP ... CASCADE to drop the dependent objects too. | ||
+ERROR: error executing StatementPhase stage 1 of 1 with 8 MutationType ops: relation "main_table" (649): trigger "after_upd_b_row_trig" contains unknown column "b" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. I filed #136918 to track this.
Updated the regression.diffs file to reflect changes due to improved TRIGGER and collation support. Filed issues for the panic and trigger misbehavior. Fixes: cockroachdb#132515 Informs: cockroachdb#135311 Informs: cockroachdb#135131 Release note: None
bors r+ |
Updated the regression.diffs file to reflect changes due to improved TRIGGER and collation support. Filed issues for the panic and trigger misbehavior.
Fixes: #132515
Informs: #135311
Informs: #135131
Release note: None