~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/dictionary.cc

  • Committer: Brian Aker
  • Date: 2010-08-09 18:04:12 UTC
  • mfrom: (1689.3.7 staging)
  • Revision ID: brian@gaz-20100809180412-olurwh51ojllev6p
Merge in heap conversion, and case insensitive patch, and remove need for
M_HASH in session.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include <config.h>
22
 
#include <plugin/schema_dictionary/dictionary.h>
 
21
#include "config.h"
 
22
#include "plugin/schema_dictionary/dictionary.h"
23
23
 
24
24
using namespace drizzled;
25
25
 
28
28
  context.add(new ColumnsTool());
29
29
  context.add(new IndexPartsTool());
30
30
  context.add(new IndexesTool());
31
 
  context.add(new ForeignKeysTool());
 
31
  context.add(new ReferentialConstraintsTool());
32
32
  context.add(new SchemasTool());
33
33
  context.add(new TableConstraintsTool());
34
34
  context.add(new TablesTool());