~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/replication_services.cc

  • Committer: Brian Aker
  • Date: 2011-02-27 19:43:52 UTC
  • mfrom: (2192.4.9 iter)
  • Revision ID: brian@tangent.org-20110227194352-w48j3ey8nhonecsd
MergeĀ inĀ find_ptr

Show diffs side-by-side

added added

removed removed

Lines of Context:
173
173
       iter != replication_streams.end();
174
174
       ++iter)
175
175
  {
176
 
    plugin::TransactionReplicator *cur_repl= (*iter).first;
177
 
    plugin::TransactionApplier *cur_appl= (*iter).second;
 
176
    plugin::TransactionReplicator *cur_repl= iter->first;
 
177
    plugin::TransactionApplier *cur_appl= iter->second;
178
178
 
179
179
    result= cur_repl->replicate(cur_appl, in_session, to_push);
180
180