Commit d7bd5868 authored by unknown's avatar unknown

ha_innobase.cc, dict0dict.c:

  Cleanup


innobase/dict/dict0dict.c:
  Cleanup
sql/ha_innobase.cc:
  Cleanup
parent b41e57a7
...@@ -2578,8 +2578,6 @@ dict_update_statistics_low( ...@@ -2578,8 +2578,6 @@ dict_update_statistics_low(
ulint size; ulint size;
ulint sum_of_index_sizes = 0; ulint sum_of_index_sizes = 0;
printf("Updating statistics for table %s\n", table->name);
/* Find out the sizes of the indexes and how many different values /* Find out the sizes of the indexes and how many different values
for the key they approximately have */ for the key they approximately have */
......
...@@ -3042,8 +3042,8 @@ ha_innobase::estimate_number_of_rows(void) ...@@ -3042,8 +3042,8 @@ ha_innobase::estimate_number_of_rows(void)
/* Calculate a minimum length for a clustered index record and from /* Calculate a minimum length for a clustered index record and from
that an upper bound for the number of rows. Since we only calculate that an upper bound for the number of rows. Since we only calculate
new statistics in row0mysql.c when a table size has grown by 50 % new statistics in row0mysql.c when a tablehas grown
or by a threshold factor, we must add a safety factor 2 in front by a threshold factor, we must add a safety factor 2 in front
of the formula below. */ of the formula below. */
estimate = 2 * data_file_length / dict_index_calc_min_rec_len(index); estimate = 2 * data_file_length / dict_index_calc_min_rec_len(index);
......
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