~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_table.cc

  • Committer: LinuxJedi
  • Date: 2010-08-20 12:28:38 UTC
  • mto: (1723.1.8 build)
  • mto: This revision was merged to the branch mainline in revision 1724.
  • Revision ID: linuxjedi@linuxjedi-laptop-20100820122838-uyt2nbx22v3blmpb
Fix error to show storage engine not table name

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
    if (create_info.db_type == NULL)
52
52
    {
53
53
      my_error(ER_UNKNOWN_STORAGE_ENGINE, MYF(0), 
54
 
               create_table_message.name().c_str());
 
54
               create_table_message.engine().name().c_str());
55
55
 
56
56
      return true;
57
57
    }