~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/schemas.h

  • Committer: Brian Aker
  • Date: 2010-10-10 02:07:52 UTC
  • mfrom: (1827.2.3 staging)
  • Revision ID: brian@tangent.org-20101010020752-ktv73isay5dxtvp3
Merge in switch on table_share_instance inheritance.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
  class Generator : public drizzled::plugin::TableFunction::Generator 
39
39
  {
40
 
    drizzled::message::SchemaPtr schema;
 
40
    drizzled::message::Schema schema;
41
41
 
42
42
    drizzled::generator::Schema schema_generator;
43
43
 
48
48
 
49
49
    const std::string &schema_name()
50
50
    {
51
 
      return schema->name();
 
51
      return schema.name();
52
52
    }
53
53
 
54
54
    bool populate();