bug 538074

This commit is contained in:
Marc Delisle
2002-04-03 17:55:48 +00:00
parent 396aa7c887
commit 0643ce931a
2 changed files with 6 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-04-03 Marc Delisle <lem9@users.sourceforge.net>
* tbl_indexes.php3, bug 538074: FULLTEXT is only supported since
MySQL 3.23.23; so before, SHOW KEYS does not show a column 'Comment'
2002-04-02 Marc Delisle <lem9@users.sourceforge.net>
* Documentation.html: faq about maximum upload filesize
* romanian, swedish, indonesian, spanish, catalan, czech*, danish,

View File

@@ -92,7 +92,8 @@ for ($i = 0; $i < $idx_cnt; $i++) {
}
// 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'];
$indexes_info[$row['Key_name']]['Comment'] =
(PMA_MYSQL_INT_VERSION >= 32323) ? $row['Comment'] : '';
$indexes_data[$row['Key_name']][$row['Seq_in_index']]['Column_name'] = $row['Column_name'];
if (isset($row['Sub_part'])) {