mysql - phpMyAdmin not showing all rows - wrong number of total records shown -
i'm showing rows (825) in phpmyadmin v4.3.2 mysql innodb table sorted default autoincrement primary key. when sorted ascending, go last page stops @ id = 1150 when should id = 1337. last 200 or records not display. when sorted descending, records correctly start @ last record.
oddly, increasing number of rows per page give more of missing rows , if set 250 rows per page, there.
any ideas why result set truncated? seems if phpmyadmin miscalculating number of pages.
update upgraded latest version 4.5.0.2 , problem persists.
update2 query executed when entering table select * gems
result: showing rows 0 - 24 (825 total, query took 0.0000 seconds.)
when query select count(*) gems
result returns 997. problem in estimated number of records phpmyadmin thinks there.
i found had following setting in phpmyadmin config file pasted know previous performance fix made.
$cfg['maxexactcount'] = 0
this disabled correcting innodb estimates. commented out line, , of course took care of problem
Comments
Post a Comment