Commit c82d6fdd authored by unknown's avatar unknown

Use delayed create index for LOAD DATA INFILE, INSERT ... SELECT and CREATE ... SELECT

(Accidently disabled by a recent push)

parent 68b583d8
...@@ -689,7 +689,7 @@ void ha_myisam::deactivate_non_unique_index(ha_rows rows) ...@@ -689,7 +689,7 @@ void ha_myisam::deactivate_non_unique_index(ha_rows rows)
we don't want to update the key statistics based of only a few rows. we don't want to update the key statistics based of only a few rows.
*/ */
if (file->state->records == 0 && if (file->state->records == 0 &&
rows >= MI_MIN_ROWS_TO_USE_BULK_INSERT) (!rows || rows >= MI_MIN_ROWS_TO_USE_BULK_INSERT))
mi_disable_non_unique_index(file,rows); mi_disable_non_unique_index(file,rows);
else else
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment