~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Brian Aker
  • Date: 2010-10-14 18:32:09 UTC
  • mto: This revision was merged to the branch mainline in revision 1855.
  • Revision ID: brian@tangent.org-20101014183209-884iivwn1og2v3yd
Committing refactor of table out (this is part of the concurrency work).

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
#include "drizzled/internal/iocache.h"
54
54
#include "drizzled/drizzled.h"
55
55
#include "drizzled/plugin/authorization.h"
 
56
#include "drizzled/table/temporary.h"
56
57
#include "drizzled/table_placeholder.h"
57
58
 
58
59
using namespace std;
2256
2257
                        const_cast<char *>(identifier.getPath().c_str()), static_cast<uint32_t>(identifier.getPath().length()));
2257
2258
 
2258
2259
 
2259
 
  Table *new_tmp_table= new TemporaryTable;
 
2260
  table::Temporary *new_tmp_table= new table::Temporary;
2260
2261
  if (not new_tmp_table)
2261
2262
    return NULL;
2262
2263