~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/info_schema/processlist.cc

  • Committer: Monty Taylor
  • Date: 2009-12-21 06:10:11 UTC
  • mto: (1253.2.3 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091221061011-c9x4fskynpxmskvl
Removed more bits from server_includes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include "drizzled/session.h"
28
28
#include "drizzled/show.h"
29
29
#include "drizzled/plugin/client.h"
 
30
#include "drizzled/session_list.h"
30
31
 
31
32
#include "helper_methods.h"
32
33
#include "processlist.h"
184
185
  {
185
186
    Session* tmp;
186
187
 
187
 
    for (vector<Session*>::iterator it= session_list.begin(); it != session_list.end(); ++it)
 
188
    for (vector<Session*>::iterator it= getSessionList().begin(); it != getSessionList().end(); ++it)
188
189
    {
189
190
      tmp= *it;
190
191
      Security_context *tmp_sctx= &tmp->security_ctx;