~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_stats/status_tool.cc

  • Committer: Brian Aker
  • Date: 2010-12-02 21:58:09 UTC
  • mto: This revision was merged to the branch mainline in revision 1973.
  • Revision ID: brian@tangent.org-20101202215809-761e1wk2nhyuvt9r
This is from the catalog patch (I'm pushing it up as its own little thing
just because it is fairly invasive).

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
 
86
86
  drizzle_show_var *var= NULL;
87
87
  uint32_t count= 0;
88
 
  vector<drizzle_show_var *>::iterator all_status_vars_iterator= all_status_vars.begin();
 
88
  std::vector<drizzle_show_var *>::iterator all_status_vars_iterator= all_status_vars.begin();
89
89
  while (true)
90
90
  {
91
91
    var= &StatusHelper::status_vars_defs[count];
100
100
}
101
101
 
102
102
StatusTool::Generator::Generator(Field **arg, LoggingStats *in_logging_stats,
103
 
                                 vector<drizzle_show_var *> *in_all_status_vars, 
 
103
                                 std::vector<drizzle_show_var *> *in_all_status_vars, 
104
104
                                 bool inIsLocal) :
105
105
  TableFunction::Generator(arg),
106
106
  logging_stats(in_logging_stats),