~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_share.h

  • Committer: Brian Aker
  • Date: 2009-03-25 22:03:13 UTC
  • mfrom: (960.2.47 mordred)
  • Revision ID: brian@tangent.org-20090325220313-fffae098oufxiaqg
Merge of Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
                                           (no generated-only virtual fields) */
87
87
 
88
88
  plugin_ref db_plugin;                 /* storage engine plugin */
89
 
  inline handlerton *db_type() const    /* table_type for handler */
 
89
  inline StorageEngine *db_type() const /* table_type for handler */
90
90
  {
91
91
    // assert(db_plugin);
92
 
    return db_plugin ? plugin_data(db_plugin, handlerton*) : NULL;
 
92
    return db_plugin ? plugin_data(db_plugin, StorageEngine*) : NULL;
93
93
  }
94
94
  enum row_type row_type;               /* How rows are stored */
95
95
  enum tmp_table_type tmp_table;