~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/dictionary.cc

  • Committer: Brian Aker
  • Date: 2010-03-31 23:39:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1434.
  • Revision ID: brian@gaz-20100331233912-q2zi8n0sg35kvwsm
Shift show commands to their own dictionary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  context.add(new ColumnsTool());
29
29
  context.add(new IndexPartsTool());
30
30
  context.add(new IndexesTool());
31
 
  context.add(new ShowTables());
32
31
  context.add(new ReferentialConstraintsTool());
33
32
  context.add(new SchemasTool());
34
 
  context.add(new ShowColumns());
35
 
  context.add(new ShowIndexes());
36
 
  context.add(new ShowTemporaryTables());
37
33
  context.add(new TableConstraintsTool());
38
 
  context.add(new ShowTableStatus());
39
34
  context.add(new TablesTool());
40
 
 
41
 
  context.add(new ShowSchemas());
42
35
  
43
36
  return 0;
44
37
}