~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Brian Aker
  • Date: 2010-03-04 20:00:00 UTC
  • mfrom: (1320.1.15 build)
  • Revision ID: brian@gaz-20100304200000-vk1jaxgf665smmv8
Merge Monty/Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
863
863
  *to= global_status_var;
864
864
 
865
865
  /* Add to this status from existing threads */
866
 
  for(vector<Session*>::iterator it= getSessionList().begin(); it != getSessionList().end(); ++it )
 
866
  for(SessionList::iterator it= getSessionList().begin(); it != getSessionList().end(); ++it )
867
867
  {
868
868
    add_to_status(to, &((*it)->status_var));
869
869
  }