Add after nibble hook to pt-online-schema-change (#645)

* Include hook after nibble on copy rows

* Update tests with new hook for pt-online-schema-change
This commit is contained in:
Marcelo HP Ferreira
2023-07-31 15:30:24 +02:00
committed by GitHub
parent b920dc7639
commit 8ece30ff2f
3 changed files with 17 additions and 0 deletions

View File

@@ -51,6 +51,11 @@ sub before_copy_rows {
print "PLUGIN before_copy_rows\n";
}
sub on_copy_rows_after_nibble {
my ($self, %args) = @_;
print "PLUGIN on_copy_rows_after_nibble\n";
}
sub after_copy_rows {
my ($self, %args) = @_;
print "PLUGIN after_copy_rows\n";