bug 538074
This commit is contained in:
@@ -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,
|
||||
|
@@ -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'])) {
|
||||
|
Reference in New Issue
Block a user