You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's an edge case concerning create table and adding and index.
When you run a create table migration that includes an index creation from a machine that doesn't have percona-toolkit installed, the table will be created but the index will not, as the former doesn't go through pt-online-schema-change.
We should check it and raise a PerconaMigrator::CommandNotFoundError accordingly, before running a CREATE TABLE.
This also applies to any other DDL statements that don't go through pt-online-schema-change.
The text was updated successfully, but these errors were encountered:
There's an edge case concerning create table and adding and index.
When you run a create table migration that includes an index creation from a machine that doesn't have percona-toolkit installed, the table will be created but the index will not, as the former doesn't go through pt-online-schema-change.
We should check it and raise a PerconaMigrator::CommandNotFoundError accordingly, before running a CREATE TABLE.
This also applies to any other DDL statements that don't go through
pt-online-schema-change
.The text was updated successfully, but these errors were encountered: