0

第一次启动 SonarQube 5.5 时,我们在 MySQL 中创建表时收到以下错误。我看到也许可以使用 BINLOG_FORMAT = MIXED 来解决这个问题。这是一个要求吗?谢谢你。

ActiveRecord::JDBCError: Cannot execute statement: impossible to write to    
binary log since BINLOG_FORMAT = STATEMENT and at least one table uses a  
storage engine limited to row-based logging. InnoDB is limited to row-logging 
when transaction isolation level is READ COMMITTED or READ UNCOMMITTED.: 
INSERT INTO schema_migrations (version) VALUES ('710')
4

1 回答 1

0

我猜复制模式已启用,binary_log 必须与基于行的复制(行或混合)兼容。

于 2016-09-13T08:47:34.097 回答