~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/slave/replication_slave.cc

  • Committer: David Shrewsbury
  • Date: 2011-03-09 17:10:06 UTC
  • mto: (2228.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2229.
  • Revision ID: shrewsbury.dave@gmail.com-20110309171006-ld90oph01m3rex5k
Persist --slave.max-commit-id value to applier_state table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
    return false;
111
111
  }
112
112
 
 
113
  if (_initial_max_commit_id)
 
114
  {
 
115
    if (not rs.setInitialMaxCommitId(_initial_max_commit_id))
 
116
    {
 
117
      _error= rs.getErrorMessage();
 
118
      return false;
 
119
    }
 
120
  }
 
121
 
113
122
  return true;
114
123
}
115
124