~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/replication_services.cc

  • Committer: Olaf van der Spek
  • Date: 2011-04-05 12:26:58 UTC
  • mto: (2278.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2272.
  • Revision ID: olafvdspek@gmail.com-20110405122658-xxrvmobwwwwf3oct
Refactor Open_tables_state

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
#include <drizzled/gettext.h>
43
43
#include <drizzled/session.h>
44
44
#include <drizzled/error.h>
 
45
#include <drizzled/errmsg_print.h>
45
46
 
46
47
#include <string>
47
48
#include <vector>
173
174
       iter != replication_streams.end();
174
175
       ++iter)
175
176
  {
176
 
    plugin::TransactionReplicator *cur_repl= (*iter).first;
177
 
    plugin::TransactionApplier *cur_appl= (*iter).second;
 
177
    plugin::TransactionReplicator *cur_repl= iter->first;
 
178
    plugin::TransactionApplier *cur_appl= iter->second;
178
179
 
179
180
    result= cur_repl->replicate(cur_appl, in_session, to_push);
180
181