~skinny.moey/drizzle/transaction_id_innodb

« back to all changes in this revision

Viewing changes to plugin/logging_stats/status_tool.cc

  • Committer: Joseph Daly
  • Date: 2010-10-31 20:44:18 UTC
  • mfrom: (1856.2.38 build)
  • Revision ID: skinny.moey@gmail.com-20101031204418-dq03jokakmudu3iu
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
}
101
101
 
102
102
StatusTool::Generator::Generator(Field **arg, LoggingStats *in_logging_stats,
103
 
                                 vector<drizzle_show_var *> *all_status_vars, 
 
103
                                 vector<drizzle_show_var *> *in_all_status_vars, 
104
104
                                 bool inIsLocal) :
105
105
  TableFunction::Generator(arg),
106
106
  logging_stats(in_logging_stats),
107
107
  isLocal(inIsLocal)   
108
108
{
109
 
  all_status_vars_it= all_status_vars->begin();
110
 
  all_status_vars_end= all_status_vars->end();
 
109
  all_status_vars_it= in_all_status_vars->begin();
 
110
  all_status_vars_end= in_all_status_vars->end();
111
111
 
112
112
  status_var_to_display= NULL;
113
113
  if (isLocal)