Comments
Sort by recent activity
I also experience this error. It occured after changing from Mysql version 14.14 to MariaDB 10.4. It seems like Mysql Compare Bundle does not work with later versions of MariaDB. The comparison works but the deployment script does not work because it puts an extra quote around the default value which makes a syntax error. Here an example of how it makes an syntax error at my server: CREATE TABLE `database`.`test` ( `id` int(10) unsigned NOT NULL auto_increment, `title` varchar(50) NOT NULL DEFAULT ''0'', PRIMARY KEY (`id`) ) ENGINE=InnoDB The DEFAULT ''0'' should be DEFAULT '0' I hope the dev team will solve this error in the application. / comments
I also experience this error. It occured after changing from Mysql version 14.14 to MariaDB 10.4.It seems like Mysql Compare Bundle does not work with later versions of MariaDB. The comparison work...