-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Online DDL: remove legacy (and ancient) 'REVERT <uuid>' syntax #16301
Online DDL: remove legacy (and ancient) 'REVERT <uuid>' syntax #16301
Conversation
Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com>
Review ChecklistHello reviewers! 👋 Please follow this checklist when reviewing this Pull Request. General
Tests
Documentation
New flags
If a workflow is added or modified:
Backward compatibility
|
Looking into the failing tests. |
Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #16301 +/- ##
==========================================
- Coverage 68.71% 68.71% -0.01%
==========================================
Files 1544 1544
Lines 198011 197991 -20
==========================================
- Hits 136064 136042 -22
- Misses 61947 61949 +2 ☔ View full report in Codecov by Sentry. |
I definitely broke something in VTGate parsing.
should have succeeded.
|
Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com>
Found the issue. Tests should pass now. |
Description
This is a long overdue cleanup PR, removing support for a long since unused
revert
syntax.To revert a migration, we use this syntax:
revert vitess_migration '<uuid'>
.When revert was first introduced, we used this syntax:
revert <uuid>
. This syntax is not being used in over 3 years now since the new syntax was introduced.This PR cleans up support of the old syntax.
Related Issue(s)
Checklist
Deployment Notes