From e763ea3350722030f2bab8ae041ae77405a168ed Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sun, 6 Apr 2003 11:36:12 +0000 Subject: [PATCH] coding standards --- db_datadict.php3 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/db_datadict.php3 b/db_datadict.php3 index be629a165..fd3d07a6b 100644 --- a/db_datadict.php3 +++ b/db_datadict.php3 @@ -121,9 +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_info[$row['Key_name']]['Comment'] = $row['Comment']; } $indexes_data[$row['Key_name']][$row['Seq_in_index']]['Column_name'] = $row['Column_name'];