~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Brian Aker
  • Date: 2010-05-17 18:33:56 UTC
  • Revision ID: brian@gaz-20100517183356-bwpd9418anvmm09c
Remove dead options/rename Option and remove the update that we no longer
use.

Show diffs side-by-side

added added

removed removed

Lines of Context:
480
480
*/
481
481
int StorageEngine::createTable(Session &session,
482
482
                               TableIdentifier &identifier,
483
 
                               bool update_create_info,
484
483
                               message::Table& table_message)
485
484
{
486
485
  int error= 1;
494
493
  }
495
494
  else
496
495
  {
497
 
    if (update_create_info)
498
 
      table.updateCreateInfo(&table_message);
499
 
 
500
496
    /* Check for legal operations against the Engine using the proto (if used) */
501
497
    if (table_message.type() == message::Table::TEMPORARY &&
502
498
        share.storage_engine->check_flag(HTON_BIT_TEMPORARY_NOT_SUPPORTED) == true)