~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Stewart Smith
  • Date: 2009-06-03 01:12:56 UTC
  • mto: This revision was merged to the branch mainline in revision 1053.
  • Revision ID: stewart@flamingspork.com-20090603011256-8cun4p3kcu6tua7c
Move handler::create to StorageEngine::create_table

Some workarounds in HEAP for creating table on ::open and internal tables

Show diffs side-by-side

added added

removed removed

Lines of Context:
2191
2191
{
2192
2192
  mark_trx_read_write();
2193
2193
 
2194
 
  return create(name, form, create_info);
 
2194
  return engine->create_table(ha_session(), name, form, create_info);
2195
2195
}
2196
2196
 
2197
2197
/**