~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/info_schema/info_schema.cc

Remove PLUGIN and MODULES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#include "character_set.h"
32
32
#include "columns.h"
33
33
#include "key_column_usage.h"
34
 
#include "modules.h"
35
34
#include "open_tables.h"
36
 
#include "plugins.h"
37
35
#include "processlist.h"
38
36
#include "referential_constraints.h"
39
37
#include "schemata.h"
62
60
  registry.add(SessionVariablesIS::getTable());
63
61
  registry.add(GlobalVariablesIS::getTable());
64
62
  registry.add(SessionStatusIS::getTable());
65
 
  registry.add(ModulesIS::getTable());
66
 
  registry.add(PluginsIS::getTable());
67
63
  registry.add(ProcessListIS::getTable());
68
64
  registry.add(ReferentialConstraintsIS::getTable());
69
65
  registry.add(TableConstraintsIS::getTable());
104
100
  registry.remove(OpenTablesIS::getTable());
105
101
  OpenTablesIS::cleanup();
106
102
 
107
 
  registry.remove(ModulesIS::getTable());
108
 
  ModulesIS::cleanup();
109
 
 
110
 
  registry.remove(PluginsIS::getTable());
111
 
  PluginsIS::cleanup();
112
 
 
113
103
  registry.remove(ProcessListIS::getTable());
114
104
  ProcessListIS::cleanup();
115
105