~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_delete.cc

  • Committer: Brian Aker
  • Date: 2009-10-02 19:38:12 UTC
  • mfrom: (1152.1.7 merge)
  • Revision ID: brian@gaz-20091002193812-mpd61oecep74t6gd
Merge Monty + Brian for plugins.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <drizzled/lock.h>
28
28
#include "drizzled/probes.h"
29
29
 
 
30
using namespace drizzled;
 
31
 
30
32
/**
31
33
  Implement DELETE SQL word.
32
34
 
411
413
  /* If it is a temporary table, close and regenerate it */
412
414
  if (!dont_send_ok && (table= session->find_temporary_table(table_list)))
413
415
  {
414
 
    StorageEngine *table_type= table->s->db_type();
 
416
    plugin::StorageEngine *table_type= table->s->db_type();
415
417
    TableShare *share= table->s;
416
418
 
417
419
    if (!table_type->check_flag(HTON_BIT_CAN_RECREATE))