Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
bd9421bfa1
@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog
|
||||
+ Patch #3502814 for rfe #3187077 Change password buttons should match
|
||||
+ rfe #3488640 Expand table-group in non-light navigation frame if only one
|
||||
+ Patch #3509360 Contest-3: Option "Truncate table" before "insert"
|
||||
+ Patch #3506552 Contest-2: Show index information in the data dictionary
|
||||
|
||||
3.5.0.0 (not yet released)
|
||||
+ rfe #2021981 [interface] Add support for mass prefix change.
|
||||
|
||||
@ -22,7 +22,7 @@ if (! isset($selected_tbl)) {
|
||||
$cfgRelation = PMA_getRelationsParam();
|
||||
|
||||
require_once 'libraries/transformations.lib.php';
|
||||
|
||||
require_once 'libraries/Index.class.php';
|
||||
|
||||
/**
|
||||
* Check parameters
|
||||
@ -262,6 +262,12 @@ foreach ($tables as $table) {
|
||||
$count++;
|
||||
?>
|
||||
</table>
|
||||
<?php
|
||||
// display indexes information
|
||||
if (count(PMA_Index::getFromTable($table, $db)) > 0){
|
||||
echo PMA_Index::getView($table, $db, true);
|
||||
}
|
||||
?>
|
||||
</div>
|
||||
<?php
|
||||
} //ends main while
|
||||
|
||||
Loading…
Reference in New Issue
Block a user