~stewart/drizzle/embedded-innodb-rnd-read

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/dictionary.cc

  • Committer: Stewart Smith
  • Date: 2010-04-03 05:03:17 UTC
  • mfrom: (1310.1.43)
  • Revision ID: stewart@flamingspork.com-20100403050317-d5l3aqqa2p411bos
Merged embedded-innodb-write-row into embedded-innodb-rnd-read.

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
}