~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 18:11:45 UTC
  • mfrom: (2254.1.2 build)
  • Revision ID: kalebral@gmail.com-20110328181145-tfsb6s5ozhuvhfoq
Merge Patrick - Tweaked dbqp so that the existing slave tests work.
Merge Stewart - remove over 1000 lines of mysys

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