Schema Compare: Database vs. Project: Events not syncronized
Posted: Thu 05 Jan 2012 14:39
Hello!
I did an schema compare between a database and a project. After I sycronized the database with the project with the option "Refresh comparsion results after successful synchronization" I noticed that the events are not properly synced.
The source database shows for example:
and the target project shows:
As you can see the part after DO is missing in the project file. This is the case for each event I have defined at the database. I consider this as a bug.
I'm using dbForge Studio for MySQL Professional Edition 5.0.60.
The database version is MySQL 5.1.53
additional information:
The corresponding project file of the event contains the missing code. But the schema compare window does not displaying it correctly.
I did an schema compare between a database and a project. After I sycronized the database with the project with the option "Refresh comparsion results after successful synchronization" I noticed that the events are not properly synced.
The source database shows for example:
Code: Select all
CREATE EVENT trees_snapshots_delete
ON SCHEDULE EVERY '1' MINUTE
STARTS '2011-05-20 03:00:00'
COMMENT 'delete not neccessary snapshots'
DO
BEGIN
DELETE FROM trees_snapshots WHERE keep = 0;
END
Code: Select all
CREATE EVENT trees_snapshots_delete
ON SCHEDULE EVERY '1' MINUTE
STARTS '2011-05-20 03:00:00'
COMMENT 'delete not neccessary snapshots'
DO
I'm using dbForge Studio for MySQL Professional Edition 5.0.60.
The database version is MySQL 5.1.53
additional information:
The corresponding project file of the event contains the missing code. But the schema compare window does not displaying it correctly.