~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/slave/replication_schema.h

  • Committer: Lee Bieber
  • Date: 2011-03-28 15:53:29 UTC
  • mfrom: (2239.7.4 beta-multi-master)
  • mto: This revision was merged to the branch mainline in revision 2255.
  • Revision ID: kalebral@gmail.com-20110328155329-p3d15bw0xay0ghhb
Merge Patrick - Tweaked dbqp so that the existing slave tests work.

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 */