If you alter a table to add an index, what could happen if that thread was killed during processing?
Accroding to MySQL:
During ALTER TABLE, the kill flag is checked before each block of rows are read from the original table. If the kill flag was set, the statement is aborted and the temporary table is deleted.
Edit: Just making sure that it's not going to cause any additional issues.