-
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
Replace use of WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS
with WAIT_FOR_EXECUTED_GTID_SET
#14612
Replace use of WAIT_UNTIL_SQL_THREAD_AFTER_GTIDS
with WAIT_FOR_EXECUTED_GTID_SET
#14612
Conversation
…CUTED_GTID_SET` 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
|
Worth noting: I have not removed |
I think that's correct, since our parser is kind of the superset of all supported MySQL versions and it definitely still works in 8.0 etc. |
…CUTED_GTID_SET` (#14612) Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com>
I should have backported to |
…CUTED_GTID_SET` (vitessio#14612) Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com>
…CUTED_GTID_SET` (vitessio#14612) Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com>
…IDS` with `WAIT_FOR_EXECUTED_GTID_SET` (vitessio#14612) (vitessio#14617)" This reverts commit 654c1bf. Signed-off-by: deepthi <deepthi@planetscale.com>
…IDS` with `WAIT_FOR_EXECUTED_GTID_SET` (vitessio#14612) (vitessio#14619)" This reverts commit 29d3784. Signed-off-by: deepthi <deepthi@planetscale.com>
…IDS` with `WAIT_FOR_EXECUTED_GTID_SET` (vitessio#14612) (vitessio#14620)" This reverts commit 151b1b0. Signed-off-by: deepthi <deepthi@planetscale.com>
…IDS` with `WAIT_FOR_EXECUTED_GTID_SET` (vitessio#14612) (vitessio#14620)" This reverts commit 151b1b0. Signed-off-by: deepthi <deepthi@planetscale.com>
…CUTED_GTID_SET` (vitessio#14612) Signed-off-by: Shlomi Noach <2607934+shlomi-noach@users.noreply.github.com>
I wanted to re-classify this PR - it's not actually a bug, it's addressing a deprecation warning from MySQL. After some debate, I decided to label it as |
Description
See #14611 for details. In
8.2.0
the functionWAIT_UNTIL_SQL_THREAD_AFTER_GTIDS
is removed, and we must therefore useWAIT_FOR_EXECUTED_GTID_SET
instead.The two functions have the same signature assuming no channel argument is used -- which isn't in our case. Therefore I've made no changes to any tests: everything should continue to work in the exact same way, and we expect all existing tests to pass.
Related Issue(s)
Closes #14611
Checklist
Deployment Notes