~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/slave/replication_schema.h

  • Committer: Mark Atwood
  • Date: 2011-07-06 23:13:00 UTC
  • mto: This revision was merged to the branch mainline in revision 2361.
  • Revision ID: me@mark.atwood.name-20110706231300-y49o7wu01avy1jh5
restore multi master replication

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
   * another event from the master (which causes persistence of the value).
45
45
   * An edge case, but still possible.
46
46
   *
 
47
   * @param[in] master_id Unique master identifier.
47
48
   * @param[in] value The initial value.
48
49
   */
49
 
  bool setInitialMaxCommitId(uint64_t value);
 
50
  bool setInitialMaxCommitId(uint32_t master_id, uint64_t value);
 
51
 
 
52
  bool createInitialApplierRow(uint32_t master_id);
 
53
  bool createInitialIORow(uint32_t master_id);
50
54
};
51
55
 
52
56
} /* namespace slave */