PT-196 pt-onine-schema-change is pausing because {some_status_variable}=0

Description here
This commit is contained in:
Carlos Salguero
2017-08-30 14:54:47 -03:00
parent d8723716c7
commit 7e59feb8dd
7 changed files with 86 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
DROP SCHEMA IF EXISTS test;
CREATE SCHEMA test;
USE test;
CREATE TABLE test(
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
test INT
);
INSERT INTO test (test) VALUES(1),(2),(3);