~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_engine/schema.h

  • Committer: Brian Aker
  • Date: 2011-01-11 22:30:08 UTC
  • mto: (2075.2.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2076.
  • Revision ID: brian@tangent.org-20110111223008-jqpj5whdoa8klj2b
Merge in work for error messages being standardized by error_t

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
 
82
82
  int doRenameTable(drizzled::Session&, const drizzled::TableIdentifier&, const drizzled::TableIdentifier&)
83
83
  {
84
 
    return HA_ERR_NO_SUCH_TABLE;
 
84
    return drizzled::HA_ERR_NO_SUCH_TABLE;
85
85
  }
86
86
 
87
87
  int doCreateTable(drizzled::Session&,
94
94
 
95
95
  int doDropTable(drizzled::Session&, const drizzled::TableIdentifier&)
96
96
  {
97
 
    return HA_ERR_NO_SUCH_TABLE;
 
97
    return drizzled::HA_ERR_NO_SUCH_TABLE;
98
98
  }
99
99
 
100
100
  const char **bas_ext() const