bug #712055
This commit is contained in:
@@ -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
|
||||
|
@@ -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'];
|
||||
$indexes_info[$row['Key_name']]['Comment'] = $row['Comment'];
|
||||
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'])) {
|
||||
|
Reference in New Issue
Block a user