~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/info_schema/info_schema.cc

Remove processlist from old I_S.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
#include "columns.h"
33
33
#include "key_column_usage.h"
34
34
#include "open_tables.h"
35
 
#include "processlist.h"
36
35
#include "referential_constraints.h"
37
36
#include "schemata.h"
38
37
#include "table_constraints.h"
60
59
  registry.add(SessionVariablesIS::getTable());
61
60
  registry.add(GlobalVariablesIS::getTable());
62
61
  registry.add(SessionStatusIS::getTable());
63
 
  registry.add(ProcessListIS::getTable());
64
62
  registry.add(ReferentialConstraintsIS::getTable());
65
63
  registry.add(TableConstraintsIS::getTable());
66
64
  registry.add(StatusIS::getTable());
100
98
  registry.remove(OpenTablesIS::getTable());
101
99
  OpenTablesIS::cleanup();
102
100
 
103
 
  registry.remove(ProcessListIS::getTable());
104
 
  ProcessListIS::cleanup();
105
 
 
106
101
  registry.remove(ReferentialConstraintsIS::getTable());
107
102
  ReferentialConstraintsIS::cleanup();
108
103