Anemometer
Anemometer copied to clipboard
Run EXPLAIN for INSERT/UPDATE/DELETE on MySQL 5.6
newer versions of mysql support explain on more than just select.
You can also consider this fixed by #50, as we now rewrite those into select statements and can explain them
I think it's still important to include support to detect if the target server is 5.6 and run EXPLAIN UPDATE ... ; instead of rewriting it. This is because of known issues where the query plan for and update/insert/delete query can be optimized differently than the corresponding select with the same WHERE clause.