I'm using MySQL 5.6. There is a MYISAM table with 1 million rows. The 'county' column in this table has a BTREE index on it, and the column only has 61 possible values. When I run 'show index in TABLE' on this table, it reports that the cardinality of the index on the 'county' column is 117554.
I am expecting the cardinality of a column index to reflect the number of unique values in the column. The numbers are very different in this case -- is that indicating some kind of problem, like a corrupted index?
I have run 'optimize table' and it does not change the cardinality of this index.