本文整理汇总了Golang中github.com/outbrain/orchestrator/go/inst.Instance.LogSlaveUpdatesEnabled方法的典型用法代码示例。如果您正苦于以下问题:Golang Instance.LogSlaveUpdatesEnabled方法的具体用法?Golang Instance.LogSlaveUpdatesEnabled怎么用?Golang Instance.LogSlaveUpdatesEnabled使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/outbrain/orchestrator/go/inst.Instance
的用法示例。
在下文中一共展示了Instance.LogSlaveUpdatesEnabled方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: TestCanReplicateFrom
func (s *TestSuite) TestCanReplicateFrom(c *C) {
i55 := inst.Instance{Key: key1, Version: "5.5"}
i56 := inst.Instance{Key: key2, Version: "5.6"}
var canReplicate bool
canReplicate, _ = i56.CanReplicateFrom(&i55)
c.Assert(canReplicate, Equals, false) //binlog not yet enabled
i55.LogBinEnabled = true
i55.LogSlaveUpdatesEnabled = true
i56.LogBinEnabled = true
i56.LogSlaveUpdatesEnabled = true
canReplicate, _ = i56.CanReplicateFrom(&i55)
c.Assert(canReplicate, Equals, false) //serverid not set
i55.ServerID = 55
i56.ServerID = 56
canReplicate, err := i56.CanReplicateFrom(&i55)
c.Assert(err, IsNil)
c.Assert(canReplicate, Equals, true)
canReplicate, _ = i55.CanReplicateFrom(&i56)
c.Assert(canReplicate, Equals, false)
iStatement := inst.Instance{Key: key1, Binlog_format: "STATEMENT", ServerID: 1, Version: "5.5", LogBinEnabled: true, LogSlaveUpdatesEnabled: true}
iRow := inst.Instance{Key: key2, Binlog_format: "ROW", ServerID: 2, Version: "5.5", LogBinEnabled: true, LogSlaveUpdatesEnabled: true}
canReplicate, err = iRow.CanReplicateFrom(&iStatement)
c.Assert(err, IsNil)
c.Assert(canReplicate, Equals, true)
canReplicate, _ = iStatement.CanReplicateFrom(&iRow)
c.Assert(canReplicate, Equals, false)
}