diff --git a/ChangeLog b/ChangeLog index 1cb152ffc..3582d8c4f 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-08-24 Marc Delisle + * Documentation.html, faq 6.15: creating an index on a BLOB field + 2002-08-23 Loïc Chapeaux * left.php3, lines 169-181: XHTML optimizations. * db_details_common.php3, tbl_properties_common.php3, diff --git a/Documentation.html b/Documentation.html index ddd15b1d6..df4f7ca20 100755 --- a/Documentation.html +++ b/Documentation.html @@ -2323,6 +2323,19 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://' We utilize it as free XML-SOAP service.

+

+ [6.15] I want to add a BLOB field and put an index on it, but MySQL + says "BLOB column '...' used in key specification without a key + length". +
+ The right way to do this, is to create the field without any indexes, + then display the table structure and use the "Create an index" + dialog. On this page, you will be able to choose your BLOB field, and + set a size to the index, which is the condition to create an index on + a BLOB field. +
+

+

[7. phpMyAdmin project]