~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.cc

  • Committer: Brian Aker
  • Date: 2010-02-19 16:34:09 UTC
  • mfrom: (1273.13.92 build)
  • Revision ID: brian@gaz-20100219163409-wh45g0p6fzdsed6r
Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#include <drizzled/gettext.h>
30
30
 
31
31
#include "drizzled/plugin/info_schema_table.h"
 
32
#include "drizzled/plugin/transactional_storage_engine.h"
32
33
#include <drizzled/nested_join.h>
33
34
#include <drizzled/sql_parse.h>
34
35
#include <drizzled/item/sum.h>
3313
3314
  session->set_proc_info("removing tmp table");
3314
3315
 
3315
3316
  // Release latches since this can take a long time
3316
 
  plugin::StorageEngine::releaseTemporaryLatches(session);
 
3317
  plugin::TransactionalStorageEngine::releaseTemporaryLatches(session);
3317
3318
 
3318
3319
  if (cursor)
3319
3320
  {
3357
3358
  }
3358
3359
 
3359
3360
  // Release latches since this can take a long time
3360
 
  plugin::StorageEngine::releaseTemporaryLatches(session);
 
3361
  plugin::TransactionalStorageEngine::releaseTemporaryLatches(session);
3361
3362
 
3362
3363
  new_table= *table;
3363
3364
  share= *table->s;