From 0643ce931a95ffce98f077aaf217da7aea4752a4 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 3 Apr 2002 17:55:48 +0000 Subject: [PATCH] bug 538074 --- ChangeLog | 4 ++++ tbl_indexes.php3 | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index caf1e92c2f..362cb8ce5a 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-04-03 Marc Delisle + * 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 * Documentation.html: faq about maximum upload filesize * romanian, swedish, indonesian, spanish, catalan, czech*, danish, diff --git a/tbl_indexes.php3 b/tbl_indexes.php3 index 111549ece5..51119e8d2a 100644 --- a/tbl_indexes.php3 +++ b/tbl_indexes.php3 @@ -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'])) {