bug #2363919 [display] Incorrect size for view

This commit is contained in:
Marc Delisle
2008-11-30 12:28:57 +00:00
parent 3428cd3489
commit ff500df3f7
2 changed files with 4 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #2355923 [core] do not use ctype if it is not available - bug #2355923 [core] do not use ctype if it is not available
- bug #2356433 [display] HeaderFlipType "fake" problems, - bug #2356433 [display] HeaderFlipType "fake" problems,
thanks to Michal Biniek thanks to Michal Biniek
- bug #2363919 [display] Incorrect size for view
3.1.0.0 (2008-11-28) 3.1.0.0 (2008-11-28)
+ [auth] Support for Swekey hardware authentication, + [auth] Support for Swekey hardware authentication,

View File

@@ -214,6 +214,9 @@ foreach ($tables as $keyname => $each_table) {
$table_encoded = urlencode($each_table['TABLE_NAME']); $table_encoded = urlencode($each_table['TABLE_NAME']);
// Sets parameters for links // Sets parameters for links
$tbl_url_query = $url_query . '&table=' . $table_encoded; $tbl_url_query = $url_query . '&table=' . $table_encoded;
// do not list the previous table's size info for a view
$formatted_size = '-';
$unit = '';
switch ( $each_table['ENGINE']) { switch ( $each_table['ENGINE']) {
// MyISAM, ISAM or Heap table: Row count, data size and index size // MyISAM, ISAM or Heap table: Row count, data size and index size