Hey guys, well we tried to upgrade over the weekend, a nice early wakeup of 4:00am *yawn*
and like most things it broke
.
although the update was successful it would appear some of the modules we have installed still use the old way of doing Left Joins.
an example of the code (this is not the exact code because at 4am i wasn't thinking and forgot to nab the error message, but it gives you an idea):
Code:
mysql> select * from categories c, categories_description cd left join categories_description cd2 ON (c.parent_id = cd2.categories_id and cd2.language_id = '1') where c.categories_id = cd.categories_id and cd.language_id = '1';
ERROR 1054 (42S22): Unknown column 'c.parent_id' in 'on clause'
So i guess the only thing to do is update all of the left join code so that it works on the newer syntax and then upgrade?
or has anyone got any other suggestions.
Andy.