rfe #2129902 [structure] Do not hide indexes

This commit is contained in:
Marc Delisle
2009-11-01 13:12:10 +00:00
parent b95bffb1b5
commit d524c87b15
2 changed files with 3 additions and 4 deletions

View File

@@ -46,6 +46,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #2883633 [export] Export of InnoDB table is incomplete - bug #2883633 [export] Export of InnoDB table is incomplete
+ rfe #2862575 [status] Order query statistics by % desc, skip rows with 0 + rfe #2862575 [status] Order query statistics by % desc, skip rows with 0
+ rfe #2823686 [interface] Increase default height of query window + rfe #2823686 [interface] Increase default height of query window
+ rfe #2129902 [structure] Don't hide indexes
3.2.4.0 (not yet released) 3.2.4.0 (not yet released)
- bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status - bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status

View File

@@ -562,7 +562,6 @@ if ($fields_cnt > 20) {
/** /**
* Displays indexes * Displays indexes
*/ */
PMA_generate_slider_effect('tablestatistics_indexes', $strDetails);
if (! $tbl_is_view && ! $db_is_information_schema && 'ARCHIVE' != $tbl_type) { if (! $tbl_is_view && ! $db_is_information_schema && 'ARCHIVE' != $tbl_type) {
/** /**
@@ -591,7 +590,8 @@ if (! $tbl_is_view && ! $db_is_information_schema && 'ARCHIVE' != $tbl_type) {
<br /> <br />
<?php <?php
} }
echo '<div id="tablestatistics">' . "\n";
PMA_generate_slider_effect('tablestatistics', $strDetails);
/** /**
* Displays Space usage and row statistics * Displays Space usage and row statistics
@@ -826,8 +826,6 @@ if ($cfg['ShowStats']) {
require './libraries/tbl_triggers.lib.php'; require './libraries/tbl_triggers.lib.php';
echo '<div class="clearfloat"></div>' . "\n"; echo '<div class="clearfloat"></div>' . "\n";
echo '</div>' . "\n";
echo '</div>' . "\n";
/** /**
* Displays the footer * Displays the footer