WL#10398: Improve SELECT COUNT(*) performance by using handler::records_from_index(*num_rows, index) in execution phase

Affects: Server-8.0   —   Status: Complete

As part of WL6742,counting the number of records for count(*) was always done
using the primary index, this was done because when there are concurrent changes
in secondary indexes with multiple users using the table ,the time taken by
secondary index to count all the records is slower than primary index scan. But
the downside is that always using primary index which can be very big
(consisting of many leaf pages) can be slower when compared to a small secondary
index in case of single user.

See also BUG#80580, BUG#81854, and BUG#82313.

There is also a question on StackExchange about count performance:
http://dba.stackexchange.com/questions/130780/mysql-count-performance