tags:

views:

26

answers:

1

i ran a delete rows query. it was taking too long so i killed the thread from administration. did it undo the changes to the table/?

+1  A: 

InnoDB will rollback the transaction.

MyISAM will leave the changes and possible even the table in corrupt state.

Quassnoi