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

(Accidently disabled by a recent push)
This commit is contained in:
unknown 2002-12-16 17:28:53 +02:00
parent 68b583d88b
commit c82d6fddb9

View file

@ -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.
*/
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);
else
{