~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Brian Aker
  • Date: 2010-10-19 22:17:17 UTC
  • mto: (1864.2.1 merge)
  • mto: This revision was merged to the branch mainline in revision 1864.
  • Revision ID: brian@tangent.org-20101019221717-clg9disnr5tm2ddg
We add a "shell" table type, used only during field creation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
#include <drizzled/table_proto.h>
55
55
#include <drizzled/plugin/event_observer.h>
56
56
 
 
57
#include <drizzled/table/shell.h>
 
58
 
57
59
#include <boost/algorithm/string/compare.hpp>
58
60
 
59
61
static bool shutdown_has_begun= false; // Once we put in the container for the vector/etc for engines this will go away.
501
503
                               message::Table& table_message)
502
504
{
503
505
  int error= 1;
504
 
  Table table;
 
506
  table::Shell table;
505
507
  TableShare share(identifier);
506
508
  message::Table tmp_proto;
507
509