~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_delete.cc

  • Committer: Monty Taylor
  • Date: 2009-03-24 17:44:41 UTC
  • mto: (960.5.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 964.
  • Revision ID: mordred@inaugust.com-20090324174441-nmsq0gwjlgf7f0mt
Changed handlerton to StorageEngine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
795
795
  /* If it is a temporary table, close and regenerate it */
796
796
  if (!dont_send_ok && (table= find_temporary_table(session, table_list)))
797
797
  {
798
 
    handlerton *table_type= table->s->db_type();
 
798
    StorageEngine *table_type= table->s->db_type();
799
799
    TABLE_SHARE *share= table->s;
800
800
 
801
801
    if (!ha_check_storage_engine_flag(table_type, HTON_BIT_CAN_RECREATE))