MySQL Forums
Forum List  »  Other Migration

Re: Migrating from 4.1.22 to 5.0.45
Posted by: Bob Chojnacki
Date: August 28, 2008 01:23PM

Sorry, digging a little deper, I found the fix on:

http://bugs.mysql.com/bug.php?id=13832

I just used parenthesis:

CREATE TEMPORARY TABLE project_1
AS SELECT p.* FROM (project AS p, workspace_project AS wp)
JOIN int_project_1 AS i ON (p.project_sid = i.project_sid AND p.revision = i.revision)
JOIN workspace_project_1 AS r ON (wp.project_sid = r.project_sid AND wp.revision = r.revision) WHERE p.project_sid = wp.project_sid
FOR UPDATE

I hope this will help others.

Options: ReplyQuote


Subject
Views
Written By
Posted
4923
August 28, 2008 01:09PM
Re: Migrating from 4.1.22 to 5.0.45
3165
August 28, 2008 01:23PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.