This commit is contained in:
Alexander M. Turek
2003-04-06 10:46:15 +00:00
parent 858b01340b
commit fdff6ab1cc
2 changed files with 10 additions and 3 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-04-06 Alexander M. Turek <rabus@users.sourceforge.net>
* db_datadict.php3: The result of SHOW INDEX does not have a 'Comment'
column before MySQL 3.23 (bug #712055).
2003-04-05 Marc Delisle <lem9@users.sourceforge.net>
* lang/romanian updates, thanks to Valics Lehel
* lang/slovenian update, thanks to Kositer Uros

View File

@@ -121,7 +121,10 @@ while ($row = mysql_fetch_array($rowset)) {
}
// I don't know what does following column mean....
// $indexes_info[$row['Key_name']]['Packed'] = $row['Packed'];
if (PMA_MYSQL_INT_VERSION >= 32300) {
// rabus: The 'Comment' field was added in MySQL 3.23.0.
$indexes_info[$row['Key_name']]['Comment'] = $row['Comment'];
}
$indexes_data[$row['Key_name']][$row['Seq_in_index']]['Column_name'] = $row['Column_name'];
if (isset($row['Sub_part'])) {