Grails quartz 插件在从 mysql 5.5 升级到 mysql 5.6 时中断

Grails quartz plugin breaks on upgrade from mysql 5.5 to mysql 5.6

我正在使用 Quartz 插件:

compile ":quartz:1.0.2"

在我的BuildConfig.groovy。这似乎是要使用的最新版本的 Quartz。

我正在尝试升级到 MySQL 5.6.19 并且在启动时我从 Quartz 收到以下错误:

Message: Couldn't acquire next trigger: 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 'OPTION SQL_SELECT_LIMIT=1' at line 1

这似乎是 MySql 5.5 和 MySql 5.6 之间的重大变化。

使用 MySql 5.6 时,是否有针对 Quartz 的修复程序或解决此问题的解决方法?

看来问题与 JDBC 驱动程序有关。从 5.1.6 升级到更新的版本 5.1.31 解决了这个问题。

Quartz JDBCJobStore problems with MySQL