~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/info_schema/info_schema.cc

  • Committer: Brian Aker
  • Date: 2010-02-19 20:32:03 UTC
  • mto: (1273.13.97 build)
  • mto: This revision was merged to the branch mainline in revision 1309.
  • Revision ID: brian@gaz-20100219203203-r35xkf1q3qhodqpy
Remove the old columns I_S table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include "drizzled/show.h"
29
29
 
30
30
#include "helper_methods.h"
31
 
#include "columns.h"
32
31
#include "key_column_usage.h"
33
32
#include "referential_constraints.h"
34
33
#include "table_constraints.h"
47
46
 */
48
47
static int infoSchemaInit(drizzled::plugin::Registry& registry)
49
48
{
50
 
  registry.add(ColumnsIS::getTable());
51
49
  registry.add(ReferentialConstraintsIS::getTable());
52
50
  registry.add(TableConstraintsIS::getTable());
53
51
  registry.add(KeyColumnUsageIS::getTable());
66
64
 */
67
65
static int infoSchemaDone(drizzled::plugin::Registry& registry)
68
66
{
69
 
  registry.remove(ColumnsIS::getTable());
70
 
  ColumnsIS::cleanup();
71
 
 
72
67
  registry.remove(KeyColumnUsageIS::getTable());
73
68
  KeyColumnUsageIS::cleanup();
74
69