ALTER TABLE `categories` ADD `left` INT UNSIGNED NOT NULL AFTER `title` ,
ADD `right` INT UNSIGNED NOT NULL AFTER `left` ,
ADD INDEX ( LEFT , RIGHT )
MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'left, right)' at line 1
--------------
ADD INDEX ( LEFT , RIGHT )
Should Be:
ADD INDEX ( `left` , `right` )
Fixed in subversion, thanks for reporting.
Reinstated PMA_backquote() for PRIMARY KEY, INDEX, UNIQUE and FULLTEXT. And more in general fixed the code for FULLTEXT.
Problem introduced by refactoring in revision 11240 - Wed May 7 12:35:00 2008 UTC (11 months ago) by cybot_tm